按钮焦点tabindex jquery

时间:2015-08-11 12:41:30

标签: javascript jquery html

您好我已经包含了代码

<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')
  ........
})

1 个答案:

答案 0 :(得分:2)

&#13;
&#13;
$('#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;
&#13;
&#13;