Opera PreventDefault() on keydown 事件
我正在尝试在我的网络应用程序中嵌入一些按键绑定,但我在 Opera 上遇到了困难。我有这样的代码:
window.onkeydown = function(e){
var key = e.keyCode ? e.keyCode : e.charCode ? e.charCode : false;
if (e.ctrlKey && key === 84) {
alert("foo");
e.preventDefault();
// return false;
}
}
它在 Firefox 和 Chrome 中就像一个魅力,但 Opera 仍然打开新选项卡。 return false;
也会发生同样的情况。
我的信息:Opera/9.80 (X11; Linux i686; U; en) Presto/2.7.62 Version/11.00
I'm trying to embed some keybindings in my webapp, and I'm having hard times with Opera. I have this code:
window.onkeydown = function(e){
var key = e.keyCode ? e.keyCode : e.charCode ? e.charCode : false;
if (e.ctrlKey && key === 84) {
alert("foo");
e.preventDefault();
// return false;
}
}
It works like a charm in Firefox and Chrome, but Opera still opens new tab. Same happens with return false;
.
My info: Opera/9.80 (X11; Linux i686; U; en) Presto/2.7.62 Version/11.00
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Opera 不支持
preventDefault
keydown
,仅在keypress
上。正如您在 此示例中看到的,您应该绑定一个单独的 < Opera 的 code>keypress 处理程序(根据您的情况进行调整):
Opera doesn't support
preventDefault
onkeydown
, only onkeypress
.As you can see in this example, you should bind a separate
keypress
handler for Opera (adapted to your situation):