网页某块区域鼠标不让选中文字
摘要:1、给元素加样式 -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;2、ie6-ie9 需要加以下jsa. //不可选中文字 var oDrag = document.g.....
1、给元素加样式 -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none;
2、ie6-ie9 需要加以下js
a. //不可选中文字
var oDrag = document.getElementsByClassName("ard-adv");
for(var i=0; i<oDrag.length; i++)
{
oDrag[i].onselectstart = oDrag[i].ondrag = function(){return false;};
}
b. //整个网页
document.body.onselectstart = document.body.ondrag = function(){
return false;
}
相关文章
最新发布
阅读排行
热门文章
猜你喜欢