如何使用 jquery 捕获 IE8 中的退格键?
我有一个通过 jquery 编码的简单 javascript keydown 事件。该事件应该只提醒“按下”的键。这适用于大多数键,但不适用于 Internet Explorer 中的退格键。我读到 IE 在按键事件上搞砸了,但应该适用于 keydown 和 keyup 事件。
我可以通过 jquery 做些什么来捕获 IE 中的退格键吗?我当前测试的IE版本是:
8.0.7600.16385
$('.AddressField').bind("keydown", function (e) {
alert(e.keyCode);
});
I've got a simple javascript keydown event coded via jquery. The event should just alert the key that is "down." This works for most keys but not the backspace key in Internet Explorer. I read that IE messes this up on the keypress event but was supposed to work for the keydown and keyup events.
Is there anything I can do via jquery to capture the backspace in IE? The version of IE I'm currently testing in is:
8.0.7600.16385
$('.AddressField').bind("keydown", function (e) {
alert(e.keyCode);
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用哪个:
use which:
keyCode
属性在 IE 中不可用。在 IE 中,您必须使用which
属性。keyCode
property is not available in IE. In IE you must usewhich
property.