美文网首页
js 如何禁止选中文本

js 如何禁止选中文本

作者: 超音速6 | 来源:发表于2020-10-12 00:14 被阅读0次
//直接上干货:
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

相关文章

网友评论

      本文标题:js 如何禁止选中文本

      本文链接:https://www.haomeiwen.com/subject/gknypktx.html