Enterキーでsubmitを防止するjqueryを記述しています。
こちらのjQueryをjavascriptに変換したいのですが、うまくいきません。
以下にjavascriptに変換したコードを記述しておりますが、どう修正すれば、
うまくいくのでしょうか?
ご教授のほどよろしくお願いいたします。
以下jQueryをJavascriptに修正したいのですが、
HTML
1<form id="myForm" method="post"> 2<table> 3<tr> 4<th><label for="formName">名前 <span class="ind">必須</span></label></th> 5<td><input type="text" name="formName" id="formName"></td> 6</tr> 7<tr> 8<th><label for="formFurigana">ふりがな <span class="ind">必須</span></label></th> 9<td><input type="text" name="formFurigana" id="formFurigana"></td> 10</tr> 11<tr> 12<th><label for="formTell">電話番号 <span class="ind">必須</span></label></th> 13<td><input type="text" name="formTell" id="formTell"></td> 14</tr> 15<tr> 16<th><label for="formMail">メールアドレス <span class="ind">必須</span></label></th> 17<td><input type="text" name="formMail" id="formMail"></td> 18</tr> 19<tr> 20<th><label for="formInquiry">お問い合わせ内容 <span class="ind">必須</span></label></th> 21<td><textarea rows="9" name="formInquiry" id="formInquiry"></textarea></td> 22</tr> 23</table> 24<p><input type="submit" value="送信内容を確認する"></p> 25</form>
css
1html,body,div,p,table,tr,th,td,form,ul,li{ 2 margin: 0; 3 padding: 0; 4} 5 6img{ 7 border: none; 8} 9 10body{ 11 font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif; 12 font-size: 14px; 13 line-height: 20px; 14 margin: 24px; 15} 16 17div{ 18 width: 695px; 19} 20 21li{ 22 list-style: none; 23} 24 25form{ 26} 27 28table{ 29 width: 100%; 30 margin: 0 0 12px; 31 border-collapse: collapse; 32 border-spacing: 0; 33} 34 35th, 36td{ 37 padding: 8px 12px; 38 border: 1px solid #ddd; 39 text-align: left; 40 vertical-align: middle; 41} 42 43th{ 44 width: 180px; 45 background: #eee; 46 font-weight: normal; 47} 48 49th span{ 50 font-size: 12px; 51} 52 53th .ind{ 54 color: #f00; 55 font-size: 14px; 56} 57 58td{ 59 background: #fff; 60} 61 62td input{ 63 width: 250px; 64} 65 66td textarea{ 67 width: 464px; 68} 69 70.errorMsg{ 71 display: block; 72 color: #f00; 73} 74 75.errorInput{ 76 background: #fcf0f2; 77}
jQuery
1$(function () { 2 function setMyForm(target) { 3 target.find('input[type=text]').on({ 4 'keypress': function(e){ 5 if( (e.keyCode == 13) ) return false; 6 } 7 }); 8 } 9 setMyForm($('#myForm')); 10});
//ためしたこと
javascript
1(function () { 2 var inputText = document.querySelectorAll('input[type="text"]') 3 for (let i = 0; i < length; i++) { 4 inputText[i].addEventListener("keypress", function (e) { 5 if (e.keyCode == 13) { 6 return false; 7 } 8 }); 9 } 10})();
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/22 14:41 編集
2020/04/22 14:49
2020/04/22 14:56