首页 > HTML/CSS

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

发表于2015-08-06 20:37:12| --次阅读| 来源webkfa| 作者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;

  }

相关文章

猜你喜欢

学到老在线代码浏览器 关闭浏览
友情链接: hao123 360导航 搜狗网址导航 114啦网址导航 博客大全
Copyright © 1999-2014, WEBKFA.COM, All Rights Reserved  京ICP备14034497号-1