Skip to content

Instantly share code, notes, and snippets.

@foru17
Created April 3, 2014 07:22
Show Gist options
  • Save foru17/9949762 to your computer and use it in GitHub Desktop.
Save foru17/9949762 to your computer and use it in GitHub Desktop.
JavaScript处理网页 禁止右键、复制、按键等
/* 禁止右键 */
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