JavaScript code snippet-Prohibit right-click, select, paste, shift, Ctrl, alt .....

Source: Internet
Author: User
< Script Language = " Javascript " >
<! --
Function Key () {
If (Event. shiftkey) {
Window. Close ();}
// Disable shift
If (Event. altkey) {
Window. Close ();}
// Disable alt
If (Event. ctrlkey) {
Window. Close ();}
// Disable Ctrl
Return   False ;}
Document. onkeydown = Key;
If (Window. Event)
Document. captureevents (event. mouseup );
// Swordmaple JavaScript article.
// From www.jx165.com
Function Nocontextmenu () {
Event. cancelbubble= True
Event. returnvalue= False;
Return False;}
Function Norightclick (E) {
If (Window. Event) {
If(E. Which= 2 |E. Which= 3)
Return False;}
Else
If (Event. Button =   2   | Event. Button =   3 ) {
Event. cancelbubble= True
Event. returnvalue= False;
Return False;}
}
// Disable right-click
Document. oncontextmenu = Nocontextmenu; // For ie5 +
Document. onmousedown = Norightclick; // For all others
// -->
</ Script >
< Body onselectstart = " Return false " ; Onpaste = " Return false " ; >
Select a character and try 1010110
< Input size = 30 >
<! -- Onselectstart prohibit onpaste from pasting -->

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.