一、CSS
在body里写下以下内容可禁止复制
body{-moz-user-select: none; /*火狐*/-webkit-user-select: none; /*webkit浏览器*/-ms-user-select: none; /*IE10*/-khtml-user-select: none; /*早期浏览器*/user-select: none;
}
二、JQ
在JS里写以下内容可禁止右键和F12
$(document).bind("contextmenu", function () { return false; }); // 禁止右键document.oncontextmenu = function () { return false; };document.onkeydown = function () {if (window.event && window.event.keyCode == 123) {event.keyCode = 0;event.returnValue = false;return false;}}