选项卡在Internet Explorer中无法正常工作

时间:2017-10-30 09:41:39

标签: html css internet-explorer tabs

在下图中

enter image description here

当我使用密码输入框中的标签按钮时,

enter image description here

第一次进入令牌代码输入框之后,如果我再次使用标签按钮,它应该取消但它将转到右侧的图像。 我只在Internet Explorer中遇到此问题。请建议我做什么?

1 个答案:

答案 0 :(得分:1)

您可以使用“tabindex”设置选项卡式元素的顺序,如下所示:

Field 1 (first tab selection):
<input type="text" name="field1" tabindex=1 /><br />
Field 2 (third tab selection):
<input type="text" name="field2" tabindex=3 /><br /> 
Field 3 (second tab selection):
<input type="text" name="field3" tabindex=2 /><br />