码迷,mamicode.com
首页 > Web开发 > 详细

js input框输入1位数字后自动跳到下一个input框聚焦

时间:2018-07-24 00:10:42      阅读:605      评论:0      收藏:0      [点我收藏+]

标签:index   selector   var   一个   pre   att   func   readonly   input框   

// input框输入1位数字后自动跳到下一个input聚焦
function goNextInput(el){
    var txts = document.querySelectorAll(el);
    for(var i = 0; i<txts.length;i++){
      var t = txts[i];
      t.index = i;
      t.setAttribute("readonly", true);
      t.onkeyup=function(){
          this.value=this.value.replace(/^(.).*$/,‘$1‘);
          var next = this.index + 1;
          if(next > txts.length - 1) return;
          txts[next].removeAttribute("readonly");
          if (this.value) {
              txts[next].focus();
          }

      }
    }
    txts[0].removeAttribute("readonly");
}

调用如下:goNextInput(‘.code-num‘);

js input框输入1位数字后自动跳到下一个input框聚焦

标签:index   selector   var   一个   pre   att   func   readonly   input框   

原文地址:https://www.cnblogs.com/gopark/p/9357620.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!