CSS:

  1. user-select: none;
  2. -webkit-user-select: none;
  3. -moz-user-select: none;
  4. -ms-user-select: none;
  5. -o-user-select: none;

JS:

  1. document.onselectstart = function(){return false;}
  2. document.addEventListener('selectstart', function(e){e.preventDefault();})

注意:以上方法可能不兼容所有浏览器,建议测试后再使用。

css和js实现禁止文字选择效果列出全部方法

原文地址: https://www.cveoy.top/t/topic/hapR 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录