标签:ret on() select art 文本 start down function turn
//禁止右键
$(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;‘);
标签:ret on() select art 文本 start down function turn
原文地址:http://www.cnblogs.com/Stillwatersrundeep/p/6845557.html