21

I'm finding that the delete key doesn't fire the keypress event in Chrome, while other keys work. The problem doesn't occur in Firefox, just in Chrome, why? Here is my code:

document.addEventListener('keypress', function (e) {
     console.log(e);
}, false);
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
qiu8310
  • 237
  • 1
  • 2
  • 8

2 Answers2

25

Use keydown or keyup instead, it captures the delete key (as well as others that keypress doesn't, see http://www.quirksmode.org/js/keys.html)

document.addEventListener('keydown', function (e) {
     console.log(e);
}, false);
Josh Davenport-Smith
  • 5,456
  • 2
  • 29
  • 40
5

keypress event for (Del, End, Home,etc..) is not fired in IE, Chrome and safari.. it only works in firefox..

so you can use the keyup or keydown event because the keypress event is intented for real (printable) characters. "keydown" is handled at a lower level so it will capture all non-printing keys like DEL, End, etc

BrainCoder
  • 5,197
  • 5
  • 30
  • 33