Why people write statement like
e.keyCode ? e.keyCode : e.charCode
Some people also does e.which
Please tell
|
Why people write statement like e.keyCode ? e.keyCode : e.charCode Some people also does e.which Please tell |
||||
|
|
|
Handling key events consistently is not at all easy. Firstly, there are two different types of codes: keyboard codes (a number representing the key on the keyboard the user pressed) and character codes (a number representing a Unicode character). You can only reliably get character codes in the Secondly, you get different sets of values in a I recommend this page as a useful resource. As a summary: If you're interested in detecting a user typing a character, use the
If you're interested in detecting a non-printable key (such as a cursor key), use the
|
|||
|
|
|
It is a conditional statement. If browser supprts e.keyCode then take e.keyCode else e.charCode. It is similar to
event.keyCode: Returns the Unicode value of a non-character key in a keypress event or any key in any other type of keyboard event. event.charCode: Returns the Unicode value of a character key pressed during a keypress event. |
|||||
|
|
keyCode and which represent the actual keyboard key pressed in the form of a numeric value. The reason both exist is that keyCode is available within Internet Explorer while which is available in W3C browsers like FireFox. charCode is similar, but in this case you retrieve the Unicode value of the character pressed. For example, the letter "A." The JavaScript expression:
Essentially says the following: If the e.keyCode property exists, set variable keyCode to its value. Otherwise, set variable keyCode to the value of the e.charCode property. Note that retrieving the keyCode or charCode properties typically involve figuring out differences between the event models in IE and in W3C. Some entails writing code like the following:
EDIT: Corrections to my explanation of charCode as per Tor Haugen's comments. |
|||||
|
|
The property The |
|||||
|