我的表單中有多個文本字段,我希望當用戶在一個文本字段中輸入數據並按下回車鍵,光標移動到當前文本字段旁邊的另一個文本字段。我訪問了一些問題,但沒有發現它們有用。將光標移動到下一個文本字段按輸入
$("#username").keypress(function (event) {
alert("inside function");
if(event.keyCode == 13) {
textboxes = $("input.username");
debugger;
currentBoxNumber = textboxes.index(this);
if (textboxes[currentBoxNumber + 1] != null) {
nextBox = textboxes[currentBoxNumber + 1];
nextBox.focus();
nextBox.select();
event.preventDefault();
return false;
}
}
});
這是我的代碼,我已經試過 ,當去年的文本字段中輸入的數據,那麼表格將在鼠標單擊提交按鈕不進入新聞界的其他事情。
@Teemu不工作我累:( – Engineer