• 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;');

  • 相关阅读:
    Centos7更改网卡名为eth0
    Centos7部署Open-Falcon监控
    centos6.x一键15项系统优化(转自努力哥)
    运维题目(十三)
    运维题目(十二)
    Mongodb的学习整理(下)
    Centos7下yum安装mongodb
    浏览器缓存
    控制反转
    js setTimeOut()
  • 原文地址:https://www.cnblogs.com/makan/p/4680555.html
Copyright © 2020-2023  润新知