标签:io ar sp on art cti html bs new
//Method one
//document.oncontextmenu=new Function(‘event.returnValue=false;‘);
document.oncontextmenu = function (e) { e = e || window.event; e.returnValue = false; }
document.onselectstart = new Function(‘event.returnValue=false;‘);//]]>//method2
//Method two
<body oncontextmenu="return false" onselectstart="return false"></body>
标签:io ar sp on art cti html bs new
原文地址:http://www.cnblogs.com/jasonzeng/p/4051851.html