将下一个文本字段集中在条件满意度上

时间:2014-11-27 05:08:23

标签: javascript jquery html

我正在努力学习jquery。我有两个文本字段。当第一个字段的长度变为3时,我需要光标移动到下一个文本框。我怎么能完成它?请帮我找到答案

<input id="phone_field1" maxlength="3" name="phone_1" type="text">
<input id="phone_field2" maxlength="3" name="phone_1" type="text">

我的代码在这里给出。请帮帮我。

1 个答案:

答案 0 :(得分:0)

如下所示:

$('#phone_field1').on('input',function(){//or keyup,you can use input rather id
  if($(this).val().length == $(this).prop('maxlength')){
   $(this).next().focus();
  }
});

添加缺失的括号。