在用户输入字符之前禁用回车键?

发布于 2024-10-31 04:55:21 字数 131 浏览 0 评论 0原文

在输入字符之前,如何禁用文本区域上的回车键?

这是我正在构建的表单 - 纯粹是出于美观原因:-)

有点像 facebook 新闻提要页面,在其中您不能按 Enter 键,直到输入单个字符?

非常感谢!

how would you disable the usage of the enter key on a text area until a character is entered?

this is for a form i'm building - purely for aesthetic reasons :-)

a bit like the facebook news feed page where you can't press enter until entering a single character?

many thanks in advance!

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

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

发布评论

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

评论(2

烧了回忆取暖 2024-11-07 04:55:21

使用 jQuery:

$("textarea").live("keydown", function(e){
    if(e.which === 13 && $(this).val() === "")
        e.preventDefault();
});

请注意,如果您的目标是避免在文本区域顶部出现任何换行符,这不会阻止某人粘贴新行。

Using jQuery:

$("textarea").live("keydown", function(e){
    if(e.which === 13 && $(this).val() === "")
        e.preventDefault();
});

Note that if your goal is to avoid any new line characters at the top of a textarea, this won't prevent someone from pasting in new lines.

江南月 2024-11-07 04:55:21

您需要添加一个事件处理程序来有条件地监听和捕获返回键。这应该为您指明正确的方向

http://www.webcheatsheet.com/javascript/disable_enter_key.php

You would need to add an event handler to listen and trap the return key conditionally. This should point you in the right direction

http://www.webcheatsheet.com/javascript/disable_enter_key.php

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