使用 javascript 检测 Cmd Enter keyup 组合

发布于 2025-01-08 02:12:47 字数 169 浏览 1 评论 0原文

我正在所有表单中使用按键检测来检测输入按钮。 这很简单,当您专注于表单的输入时,如果您按 Enter 并且事件 keyCode 等于 13,则表单已提交。

但现在我想检测 Cmd + Enter 组合,因为当您将焦点放在文本区域时,输入按钮是换行符。那么我的检测语句应该是什么样子的?

谢谢

I'm using a keyup detection into all my forms to detect the enter button.
This is easy, when you are focused in a form's input if you hit enter and the event keyCode is equal to 13 then the form submitted.

But now I want to detect the Cmd + Enter combination, because when you are focused in a textarea, the enter button is a line break. So how my detect statement should look like?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

怀念你的温柔 2025-01-15 02:12:47

您的意思是 ctrlCmd 吗?然后检查 event.ctrlKey 是否为 true:

if (event.ctrlKey && event.keyCode == 13) {
    alert('now');
}

另请参阅此示例

Ps:还有布尔值event.altKey用于altevent.shiftKey用于shift事件.metakey

You mean ctrl with Cmd? Then check if event.ctrlKey is true:

if (event.ctrlKey && event.keyCode == 13) {
    alert('now');
}

Also see this example.

P.s: there are also the booleans event.altKey for alt, event.shiftKey for shift and event.metakey

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文