実現したいこと
jQuery
1$('#button').on('click',function(){ 2 入力チェック処理 3 ・ 4 ・ 5 送信 6}
上記のような、入力フォームの「入力チェック~送信」までの処理を
以下のような場合に実行させたいです。。
①「表示ボタン」(type="button")がクリックされたとき
②Enterキーでinputを順番に進めていき、
「表示ボタン」(type="button")をkeydownしたとき
発生している問題
①の時は、問題無く処理実行されるのですが、
②の時が、処理実行されません。。。
該当のソースコード
jQuery
1 $(function(){ 2 $('input[type=text]:first').focus(); 3 $('#button').on('click',function(e){ 4 //入力チェック 5 let isEmpty = false; 6 $('.name, .code').each(function(){ 7 if($(this).val() == ""){ 8 return true; 9 } 10 else if($(this).val().match(/^[ \r\n\t]*$/)){ 11 alert("スペースのみを入力することはできません"); 12 $(this).select(); 13 isEmpty = true; 14 return false; 15 } 16 }); 17 if(isEmpty) 18 return false; 19 else{ 20 tableupdate("user_data/"); 21 } 22 }) 23 //Enterキーで次のinputに進める処理 24 $('input').bind("keydown", function(e) { 25 var n = $("input").length; 26 //13=エンターkey 27 if (e.which == 13) 28 { 29 e.preventDefault(); 30 var nextIndex = $('input').index(this) + 1; 31 if(nextIndex < n) { 32 //次のやつにfocus 33 $('input')[nextIndex].focus(); 34 } else { 35 //最後のやつなので#buttonをクリック 36 $('input')[nextIndex-1].blur(); 37 $('#button').trigger('click'); 38 } 39 } 40 }); 41 });
どこ・・・
処理の書く位置が悪いのでしょうか・・・
原因が分かる方、教えて下さい。。。。
回答1件
あなたの回答
tips
プレビュー