//直接上干货:
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;');
//劫持bai开du始选择事件和(或)zhi鼠标按下、抬起事件。dao
原文:https://zhidao.baidu.com/question/1110371365074462619.html
网友评论