CSS禁用鼠标拖拽选中内容_html/css_WEB-ITnose
来源:动视网
责编:小采
时间:2020-11-27 16:02:53
CSS禁用鼠标拖拽选中内容_html/css_WEB-ITnose
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 = 'n
导读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 = 'n

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;}
}
CSS禁用鼠标拖拽选中内容_html/css_WEB-ITnose
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 = 'n