jQuery keyup keyCode 在 Opera 中不起作用
Opera 浏览器是否有可能忽略 keyCode 40(向下箭头)?
$('#test').keyup(function(e) {
$('body').append('' + e.keyCode + '');
})
测试它: http://www.jsfiddle.net/V9Euk/454/
谢谢提前!
彼得
Is it possible that the opera browser ignore the keyCode 40 (arrow down)?
$('#test').keyup(function(e) {
$('body').append('' + e.keyCode + '');
})
Test it at: http://www.jsfiddle.net/V9Euk/454/
Thanks in advance!
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,这不起作用(好像 Opera 不支持它)。
看看这个来自 www.w3.org 的测试页面显示你的浏览器检测到了什么(keyup 没有被触发)。
Yes, this does not work (seems like opera does not support it).
Have a look at this test page from www.w3.org showing you what your broswer detects (keyup is not fired).
尝试使用
autocomplete
属性,并将其设置为off
:Opera使用向下箭头键进行自动完成,因此可能会抑制事件的转发。
工作测试:http://www.jsfiddle.net/V9Euk/455/
Try to use the
autocomplete
attribute, and set it tooff
:Opera uses the arrow down key for auto completion, and may therefore suppress the forwarding of the event.
Working test: http://www.jsfiddle.net/V9Euk/455/