在页面加了禁止选中文字的js,结果文本框里输入的内容也不能选中了。

2025-04-04 08:26:16
推荐回答(3个)
回答1:

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

回答2:

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

回答3:

*,: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里面完成这个东西,全站禁止复制,除了你要排除的标签