首页 > 代码库 > JS禁止右键及禁止选中文本

JS禁止右键及禁止选中文本

//禁止右键
$(function() {
$(‘body‘).bind(‘contextmenu‘, function() {
return false;
});
});
//禁止选中
if (document.all) {
document.onselectstart = function () { return false; }; //for ie
} else {
document.onmousedown = function () { return false; };
document.onmouseup = function () { return true; };
}
document.onselectstart = new Function(‘event.returnValue=http://www.mamicode.com/false;‘);

JS禁止右键及禁止选中文本