css和js实现禁止文字选择效果列出全部方法
CSS:
- user-select: none;
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- -o-user-select: none;
JS:
- document.onselectstart = function(){return false;}
- document.addEventListener('selectstart', function(e){e.preventDefault();})
注意:以上方法可能不兼容所有浏览器,建议测试后再使用。
原文地址: https://www.cveoy.top/t/topic/hapR 著作权归作者所有。请勿转载和采集!