Javascript keyboard event combination implementation code _ javascript skills

Source: Internet
Author: User
Javascript keyboard events can be combined to implement Code. For more information, see The Code is as follows:


Txt1.onkeydown = function (ev ){

Var oevent = ev | event;

If (oevent. ctrlKey & oevent. keyCode = 13 ){
......
}
}


Txt1: the object bound to the event, for example, input in a text input box.

Oevent: event object (including many useful details about the event ).

KeyCode: You can obtain the key value pressed by the keyboard. For example, the Enter key is 13.

CtrlKey: A boolean value indicating whether the ctrl key on the keyboard is pressed. (Also, altKey and shiftKey ).

The code above indicates: press ctrl and enter to execute the statement in the ellipsis.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.