javascript - Cancel the keydown in an HTML page? -
How can I cancel the key down button on the keyboard in an HTML page?
Thanks
This is somewhat more complicated than it has been described so far, See:
You can not stop the default
onkeydown
in Opera.
In Opera, use onkeypress
instead.
Comments
Post a Comment