zoukankan      html  css  js  c++  java
  • JS禁止选中文本方法【转】

    IE下有onselectstart这个方法,通过设置这个方法可以禁止元素文本被选取。而firefox下没有这个方法,但可以通过css或一种变通的办法解决:
    
    if (typeof(element.onselectstart) != "undefined") {        
        // IE下禁止元素被选取        
        element.onselectstart = new Function("return false");        
    } else {
        // firefox下禁止元素被选取的变通办法        
        element.onmousedown = new Function("return false");        
        element.onmouseup = new Function("return true");        
    } 
    
    ------------------------
    或使用CSS: div {
          -moz-user-select:none;
          -webkit-user-select:none;
          user-select:none;    
    } 
    
    ------------------------
    
    if(document.all)
    {
       obj.onselectstart= function(){return false;}; //for ie
    }
    else
    {
       obj.onmousedown= function(){return false;};
       obj.onmouseup= function(){return true;};
    }
    document.onselectstart = new Function('event.returnValue=false;');
  • 相关阅读:
    falsh developer 快捷键
    FlashDevelop安装配置
    EditPlus保存时不生成bak文件(转)
    微信oauth2验证
    通过TortoiseSVN checkout的文件前面没有“状态标识”
    CSS3 Media Query 响应式媒体查询
    回车事件、键盘事件
    shiro登录密码加密
    mybatis常用类起别名
    shiro(四)项目开发中的配置、
  • 原文地址:https://www.cnblogs.com/potoofly/p/3118923.html
Copyright © 2011-2022 走看看