浏览器 禁止选择

  

  ie,chrome可能通过JS的onselectstart

  例如<body onselectstart="return false">

  firefox可以通过CSS

  *{
            -moz-user-select:none
        }

原文地址:https://www.cnblogs.com/_Chill/p/1718390.html