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=false;');io

相關文章
相關標籤/搜索