📜  javascript 按 Tab 键 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:22.234000             🧑  作者: Mango

代码示例3
var inputs = $(':input').keypress(function(e){ 
    if (e.which == 13) {
       e.preventDefault();
       var nextInput = inputs.get(inputs.index(this) + 1);
       if (nextInput) {
          nextInput.focus();
       }
    }
});