JS screen key effect and change the key effect of the sample code _javascript tips

Source: Internet
Author: User

Function Key f1-f2:112-123

A-b:65-90

Number key: 0-9:48-57

Esc:27

BACKSPACE: 8

Carriage return: 13

Shift:16;ctrl:17;alt:18

Space: 32

insert:45;delete:46

Copy Code code as follows:

function Document.onkeydown () {//web page press ENTER to trigger
if (event.keycode==13)
{
document.getElementById ("Loginbtn"). Click ();
return false;
}
}

document.onkeydown=mm_keypress;

function mm_keypress (num) {
Prevent system Backspace key
var keycode = Event.keycode;
if (keycode ==8)/Shield back bar once
{

Event.keycode = 0;
Event.returnvalue=false;
Return
}
if (keycode >=112 && keycode <=123)//Mask f1-12 function key
{

Event.keycode = 0;
Event.returnvalue=false;
Return
}
}

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.