web-dev-qa-db-ja.com

JavaScriptを使用してEnterキーが押されたことを検出

可能性のある複製:
Javascriptキャプチャキー

私はmysqlとphpを使用して返信機能に取り組んでいます。

私のMySQLデータベース:

reply:
  rid - id;
  topicid - under which topic;
  uid - id of the guy who replies;
  content - what did the guy said.

これが私のhtmlコードです。

<form id="replyform">
  <textarea name="rplcont" placeholder="Press enter to submit your reply."><textarea>
</form>

私の質問は次のとおりです。入力ボタンが押されたかどうかはどうすればわかりますか?

どうもありがとう。

/------------------------------------------ ----/

ここに私のコードがあります:

html:

<textarea id="reply" name="reply" onKeyPress="enterpressalert(event, this)"></textarea>

js:

function enterpressalert(e, textarea){
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) { //Enter keycode
 alert('enter press');
}
}

そしてそれは動作します。

このトピックに関係するすべての人に感謝します!

21
Matt
var code = (e.keyCode ? e.keyCode : e.which);
if(code == 13) { //Enter keycode
    alert('enter press');
}
46
Arun Killu