私は、ユーザーのキーを押して、テキスト入力中にキーを入力した場合にアラートを表示したいのですが、何かが間違っている:入力キー押下機能 - 何か間違っ
<input type='text' id='inputrename' placeholder='type and press Enter'>
JS
$('#inputrename').keypress(function(event) {
if (event.keycode === 13) {
alert ('323');
}
});
アラートが表示されません。
$('#inputrename').keypress(function(event) {
if (event.keycode === 13) {
\t alert ('323');
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type='text' class='mdinput' id='inputrename' maxlength='50' placeholder='type and press Enter'>
'keyCode'を試してください。 JavaScriptは大文字と小文字を区別 – putvande
http://stackoverflow.com/a/41261180/4206079 – Banzay