移动端web禁止长按选择文字以及弹出菜单

    /*如果是禁用长按选择文字功能,用css*/  
    * {  
        -webkit-touch-callout:none;  
        -webkit-user-select:none;  
        -khtml-user-select:none;  
        -moz-user-select:none;  
        -ms-user-select:none;  
        user-select:none;  
    }  
      input {      
             -webkit-user-select:auto; /*webkit浏览器*/     
        } 

 

 
    // 如果是想禁用长按弹出菜单, 用js  
    window.addEventListener('contextmenu', function(e){  
        e.preventDefault();  
    }); 

 

posted @ 2018-05-23 13:15  锐洋智能  阅读(2573)  评论(0编辑  收藏  举报