我需要在第一个字段中输入 4 个字符后将焦点自动转移到第二个字段。
<input type="text" id="input1">
<input type="text" id="input2">
$("#input1").change(function() {
if ($(this).val().length == 4) {
$("#input2").focus();
}
});
但这不起作用。我缺少什么?我也尝试过
document.getElementById("input2").focus();
但它也不起作用。
繁星点点滴滴
相关分类