我有两个文本字段框;用户名和密码。用户名字段下方还有一个复选框。当前按下键盘上的选项卡按钮会导致复选框获得焦点,我想覆盖它,以便tab键将密码字段置于焦点。有谁知道如何使用jQuery或如何重组HTML以实现相同的效果? 感谢
答案 0 :(得分:1)
使用tabindex
<input type="text" name="user" tabindex=1 /><br />
RemberMe:<input type="checkbox" name="loggedIn" value=" " /><br />
<input type="password" name="password" tabindex=2 /><br />
答案 1 :(得分:0)
<input type="text" name="user" tabindex=1 /><br />
<input type="password" name="password" tabindex=2 /><br />
RemberMe:<input type="checkbox" name="loggedIn" tabindex=3 /><br />
或
<input type="text" name="user" tabindex=1 />
RemberMe:<input type="checkbox" name="loggedIn" tabindex=3 /><br />
<input type="password" name="password" tabindex=2 /><br />
选项卡索引是单击选项卡时移动焦点的属性。