使用javascript检测输入键

时间:2013-01-10 05:57:15

标签: javascript enter

  

可能重复:
  Javascript capture key

我正在使用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');
}
}

它有效。

感谢所有关注此主题的人!

1 个答案:

答案 0 :(得分:46)

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