body{ -moz-user-select:none;/*火狐*/-webkit-user-select:none;/*webkit浏览器*/-ms-user-select:none;/*IE10*/-khtml-user-select:none;/*早期浏览器*/user-select:none;}//user-select有2个值(none表示不能选中文本,text表示可以选择文本)
IE6-9
document.body.onselectstart=document.body.οndrag=function(){ return false;}