如何使用 jquery 捕获 IE8 中的退格键?

发布于 2024-09-10 17:39:01 字数 348 浏览 5 评论 0原文

我有一个通过 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 技术交流群。

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

发布评论

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

评论(2

你在我安 2024-09-17 17:39:01

使用哪个:

  $('.AddressField').keypress(function(e){
       alert(e.which);
   });

use which:

  $('.AddressField').keypress(function(e){
       alert(e.which);
   });
断舍离 2024-09-17 17:39:01

keyCode 属性在 IE 中不可用。在 IE 中,您必须使用 which 属性。

keyCode property is not available in IE. In IE you must use which property.

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