jQuery Chrome - 禁用回车键
我有一个基于教程的网页,用户可以使用箭头 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试将
window
更改为“form”
。还可以考虑添加
e.stopPropagation();
。Try to change
window
to"form"
.Also consider adding
e.stopPropagation();
.