在页面加了禁止选中文字的js,结果文本框里输入的内容也不能选中了。
但是我想让文本框中的文字可以选中,怎么办?禁用js如下:if(typeof(document.onselectstart)!="undefined"){//IE下禁止元素...
但是我想让文本框中的文字可以选中,怎么办?禁用js如下:
if (typeof(document.onselectstart) != "undefined") {
// IE下禁止元素被选取
document.onselectstart = new Function("return false");
} else {
// firefox下禁止元素被选取的变通办法
document.onmousedown = new Function("return false");
document.onmouseup = new Function("return true");
} 展开
if (typeof(document.onselectstart) != "undefined") {
// IE下禁止元素被选取
document.onselectstart = new Function("return false");
} else {
// firefox下禁止元素被选取的变通办法
document.onmousedown = new Function("return false");
document.onmouseup = new Function("return true");
} 展开
展开全部
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里面完成这个东西,全站禁止复制,除了你要排除的标签
-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里面完成这个东西,全站禁止复制,除了你要排除的标签
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询