您好,欢迎访问一九零五行业门户网

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

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;}
            }
其它类似信息

推荐信息