div{ -moz-user-select:none;/*火狐*/ -webkit-user-select:none;/*webkit瀏覽器*/ -ms-user-select:none;/*IE10*/ -khtml-user-select:none;/*早期瀏覽器*/ user-select:none; }
<section onselectstart="return false;">這又是一段文字</section>
若是把上述的方法寫到body中,就實現了禁止用戶選中頁面上內容的效果。html