Stop keypress event

前端 未结 6 473
情歌与酒
情歌与酒 2020-12-29 19:19

How to stop keypress event in keydown.

I have a keydown handler in that I need to stop keypress event.

Ac

6条回答
  •  孤城傲影
    2020-12-29 20:04

    I was able to get the event.preventDefault(); to work in Safari and Firefox, but not IE7 or IE8.

    If you only want to disable the enter key, make sure that you're also checking for the key value (13 for Enter) and only setting event.preventDefault() for that key.

    Anyone able to come up with an answer for IE7/8 or Opera?

提交回复
热议问题