我有一個表單,我希望ENTER的動作移動到下一個輸入字段而不是提交表單。我已經嘗試了下面的代碼和一百個變體,但我明顯做錯了什麼。 將ENTER函數更改爲TAB
24行總是計算0的長度,所以27從不執行。 這是因爲文字而不是圖像:
$('form input').keydown(function(e) {
// The this keyword is <div id="input_form">
if(e.keyCode == 13){
e.preventDefault(); // cancel default 13 key behaviour (submitting form)
var n = $(this).next('input').length;
console.log("nexts=" + n);
if($(this).next('input').length) { // if there's another field
$(this).next('input').focus(); // move focus to next field in form
}
else {
$(this).blur();
}
}
});
形式是
<form action="" class="my_input_form" enctype="multipart/form-data" id="my_input_form_5" method="post" name="">
<!-- First Name -->
<div id="first_name_wrap" class="field_wrap" >
<label for="first_name" id="first_name_label" class="form_label">First Name</label>
<br />
<input id="first_name" class="field_input" name="first_name" placeholder="" type="text" value="<?php echo $first_name?>">
<div class="form_field_error" id="first_name_error" style="display:none;"></div>
</div>
<!-- Last Name -->
<div id="last_name_wrap" class="field_wrap">
<label for="last_name" id="last_name_label" class="form_label">Last Name</label>
<br />
<input id="last_name" class="field_input" name="last_name" placeholder="" type="text" value="<?php echo $last_name?>">
<div class="form_field_error" id="last_name_error" style="display:none;"></div>
</div>
有誰看到這個問題?
爲什麼第一個代碼是圖像?你能把它作爲文本提供嗎? –
是的,請參閱上文。 – Steve