js 如何禁止选中文本

2020-10-12  本文已影响0人  超音速6
//直接上干货:
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

上一篇 下一篇

猜你喜欢

热点阅读