jQuery Chrome - 禁用回车键

发布于 2024-11-06 19:33:06 字数 402 浏览 0 评论 0原文

我有一个基于教程的网页,用户可以使用箭头 href 按钮前进到下一个教程页面(仅当他们完成某些任务时)。此外,在大多数页面上,输入键将使您前进到下一页。

但是,某些教程页面将 Enter 键用于不同目的,我希望禁用该键。我已经完成了以下操作:

$(window).keyup(function(e) {
    if (e.keyCode == 13)
    { 
        e.preventDefault();         
        return false;
    }
});

在 IE/FF/Opera 中工作正常,但在 chrome 中则不然。

在 Chrome 中,如果我在 if 内添加警报,则表单将不会提交。否则它会的。

有什么想法吗?

I've got a tutorial based web page, where users can advance to the next tutorial page by using arrow href buttons (only if they complete some tasks). Also on most pages the enter key will advance you to the next page.

However, some tutorial pages, use the enter key for different purpose, and i want that key to be disabled. I've done the following:

$(window).keyup(function(e) {
    if (e.keyCode == 13)
    { 
        e.preventDefault();         
        return false;
    }
});

which works fine in IE/FF/Opera but it doesnt in chrome.

In chrome, if i add an alert inside if, then the form will not submit. otherwise it will.

Any idea?

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

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

发布评论

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

评论(2

时光匆匆的小流年 2024-11-13 19:33:06
$(function () {

        $('form').bind("keypress", function (e) {
            if (e.keyCode == 13) return false;
        });


    });
$(function () {

        $('form').bind("keypress", function (e) {
            if (e.keyCode == 13) return false;
        });


    });
錯遇了你 2024-11-13 19:33:06

尝试将window更改为“form”

还可以考虑添加e.stopPropagation();

Try to change window to "form".

Also consider adding e.stopPropagation();.

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