if (typeof(document.onselectstart) != "undefined") {
// IE下禁止元素被选取
document.onselectstart = function (event){
if(event.target.tagName!="INPUT"){
return false;
}
}
} else {
// firefox下禁止元素被选取的变通办法
document.onmousedown = function (event){
if(event.target.tagName!="INPUT"){
return false;
}
}
document.onmouseup = function(event){
if(event.target.tagName!="INPUT"){
return false;
}
}
}
1234567891011121314151617181920if (typeof(document.onselectstart) != "undefined") { // IE下禁止元素被选取 document.onselectstart = function (event){ if(event.target.tagName!="INPUT"){ return false; } } } else { // firefox下禁止元素被选取的变通办法 document.onmousedown = function (event){ if(event.target.tagName!="INPUT"){ return false; } } document.onmouseup = function(event){ if(event.target.tagName!="INPUT"){ return false; } } }
*,:not(input){ /* 在css中排除需要排除的标签即可 */
-moz-user-select: -moz-none;
-moz-user-select: none;
-o-user-select:none;
-khtml-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
}
不用在JS里面完成这个东西,全站禁止复制,除了你要排除的标签