您好我已经包含了代码
<input type="text" name="test" placeholder="test1" tabindex="1">
<input type="text" name="test" placeholder="test2" tabindex="2">
<input type="text" name="test" placeholder="test3" tabindex="3">
<input type="text" name="test" placeholder="test4" tabindex="4">
<input type="text" name="test" placeholder="test5" id = 'mytest' tabindex="5">
<button tabindex="6" id="add" class="button">Add</button>
现在我想要点击添加按钮然后自动tabindex关注
<input type="text" name="test" placeholder="test5" id = 'mytest' tabindex="5">
。这个点击功能要写的东西。请指导我如何解决这个问题。
$('#add').click(function(){
var tab = $('#mytest').attr('tabindex')
........
})
答案 0 :(得分:2)
$('#add').click(function(){
$('input[tabindex=5]').focus();
})
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" name="test" placeholder="test1" tabindex="1">
<input type="text" name="test" placeholder="test2" tabindex="2">
<input type="text" name="test" placeholder="test3" tabindex="3">
<input type="text" name="test" placeholder="test4" tabindex="4">
<input type="text" name="test" placeholder="test5" tabindex="5">
<button tabindex="6" id="add" class="button">Add</button>
&#13;