「JSP入門」テキストボックス、ボタン内でンターキーを無効化する方法
1.JSPコード
<form name="myForm" method="post" action="/Cft/Address">
<input type="text" name="addr" />
<button type="submit" name="addrReg" id="addrReg" onclick="checkAddr();">
登録
</button>
</form>
2.enterキーの入力を無効化する
1) テキストボックス
$(“input[name = addr]").keypress(function (e) {
if (e.which === 13) {
return false;
}
});
2) ボタン
$(“input[name = addrReg]").keypress(function (e) {
if (e.which === 13) {
return false;
}
});