我试图让我的输入文本字段在键入时集中在下一行。
jQuery代码:
for (var counter = 0; counter < 4; counter++) {
$("<input>", {
"class":"anBox",
size: 1,
maxlength: 1
}).appendTo('#answerLine_' + counter);
};
$(".anBox").keyup(function () {
if (this.value.length == this.maxLength) {
$(this).next('.anBox').focus();
}
});
这是一个:jsfiddle