网页某块区域鼠标不让选中文字

| 阅读数:--次| 作者:html,css
摘要: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;

  }

返回顶部
学到老代码浏览 关闭浏览