输入文本框,焦点自动跳转下一个文本框

来源:互联网 发布:逆战刷箱子软件 编辑:程序博客网 时间:2024/06/05 10:01



$(".yhjuan").keydown(function(event){

          var num=event.keyCode;
          if(num!=8){
              if($(this).val().length==4){
                  $(this).next().focus();
              }
          }else{
              if($(this).val().length==0){
                  $(this).prev().focus();
              }
          }
      });
0 0
原创粉丝点击