Created
April 3, 2014 07:22
-
-
Save foru17/9949762 to your computer and use it in GitHub Desktop.
JavaScript处理网页 禁止右键、复制、按键等
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 禁止右键 */ | |
document.oncontextmenu = function () { // Use document as opposed to window for IE8 compatibility | |
return false; | |
}; | |
/*js监听键盘*/ | |
window.onkeydown=function(e){ | |
console.log(e.keyCode); | |
return false; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment