欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

CSS禁用鼠标拖拽选中内容_html/css_WEB-ITnose

程序员文章站 2022-04-07 21:53:11
...
chrome -webkit-user-select:none

firxfox -moz-user-select:none

IE需要使用JS的onSelected事件了。

JS代码

dom.style.MozUserSelect = 'none';//fixrox禁止选择的JS脚本
dom.style.webkitUserSelect = 'none';
if( document.all ){//IE下禁止选择
dom.onselectstart=function(){return false;}
}