//禁止右键
$(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;');

 posted on 2017-05-12 14:51  老年菜鸟程序员  阅读(406)  评论(0编辑  收藏  举报