禁用的元素在 chrome 和 firefox 中获得焦点
Disabled element gets focus in chrome and firefox
我正在使用 img 标签。通常图像不会包含在 TAB 导航流程中。所以我将 img 标签的“tabindex
”属性设置为 0,以便它包含在流程中。我已经禁用了它。在这种情况下,在 IE 中,此 img 没有获得焦点。而在 FF 和 Chrome 中,它虽然被禁用但会获得焦点。我的观察是,带有 tabindex=0 的元素,尽管启用或禁用,都会包含在 webkit 的 TAB 导航流程中。
如何克服这个问题。
原码:
<img id="_arrowdown" tabindex='0' src="icons/ArrowDown.png"/>
已尝试修复:
<img id="_arrowdown" tabindex='0' src="icons/ArrowDown.png" onFocus="if(document.getElementById('_arrowdown').disabled == true){return false;}" disabled='true'>
但是这个修复不起作用。
我正在使用 img 标签。通常图像不会包含在 TAB 导航流程中。所以我将 img 标签的“tabindex
”属性设置为 0,以便它包含在流程中。我已经禁用了它。在这种情况下,在 IE 中,此 img 没有获得焦点。而在 FF 和 Chrome 中,它虽然被禁用但会获得焦点。我的观察是,带有 tabindex=0 的元素,尽管启用或禁用,都会包含在 webkit 的 TAB 导航流程中。
如何克服这个问题。
原码:
<img id="_arrowdown" tabindex='0' src="icons/ArrowDown.png"/>
已尝试修复:
<img id="_arrowdown" tabindex='0' src="icons/ArrowDown.png" onFocus="if(document.getElementById('_arrowdown').disabled == true){return false;}" disabled='true'>
但是这个修复不起作用。