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;}
}