Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/402.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/rest/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript Tabindex未在IE中还原_Javascript_Html_Css_Internet Explorer_Tabindex - Fatal编程技术网

Javascript Tabindex未在IE中还原

Javascript Tabindex未在IE中还原,javascript,html,css,internet-explorer,tabindex,Javascript,Html,Css,Internet Explorer,Tabindex,我有以下标记: tabindex=“102” tabindex=“103” tabindex=“104” tabindex=“101” 我将“t2”输入的索引更改为“-1”,然后更改为“103”。它在除IE之外的所有浏览器中都能正常工作。在IE中,它的工作方式就像tabindex=“-1”一样。如何为IE解决此问题?成功地在IE11(KB2976627)中重现了此问题。更简单的示例: tabindex="102" <input type="text" name="name" val

我有以下标记:

tabindex=“102”

tabindex=“103”
tabindex=“104”
tabindex=“101”

我将“t2”输入的索引更改为“-1”,然后更改为“103”。它在除IE之外的所有浏览器中都能正常工作。在IE中,它的工作方式就像tabindex=“-1”一样。如何为IE解决此问题?

成功地在IE11(KB2976627)中重现了此问题。更简单的示例:
tabindex="102"
<input type="text" name="name" value=" " tabindex="102" />
<br />

tabindex="103"
<input id="t2" type="text" name="name" value=" " tabindex="103" />
<br />

tabindex="104"                                    
<input type="text" name="name" value=" " tabindex="104" />
<br />

tabindex="101"                                    
<input id="first" type="text" name="name" value=" " tabindex="101" />