gpt4 book ai didi

javascript - 使用 javascript 检测按下的 Enter 键

转载 作者:行者123 更新时间:2023-12-03 02:01:51 24 4
gpt4 key购买 nike

Possible Duplicate:
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>

我的问题是:我如何知道是否按下了 Enter 按钮?

非常感谢。

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

这是我的有效代码:

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');
}
}

并且它有效。

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

最佳答案

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

关于javascript - 使用 javascript 检测按下的 Enter 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14251676/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com