1.CSS樣式控制,只需將下面代碼復(fù)制到 vue應(yīng)用下,index.html文件中的body標(biāo)簽上
*{
-webkit-touch-callout:none; /*系統(tǒng)默認(rèn)菜單被禁用*/
-webkit-user-select:none; /*webkit瀏覽器*/
-khtml-user-select:none; /*早期瀏覽器*/
-moz-user-select:none;/*火狐*/
-ms-user-select:none; /*IE10*/
user-select:none;
}
input{
-webkit-user-select:auto; /*webkit瀏覽器*/
}
textarea{
-webkit-user-select:auto; /*webkit瀏覽器*/
}
2.js控制方式,需要重寫(xiě)onselectstart(),onselect。(將下面代碼復(fù)制到body標(biāo)簽上即可,注意此種寫(xiě)法輸入框和文本域也不可選)
onselectstart='return false'
onselect='return false'
oncontextmenu='return false' #此句禁用鼠標(biāo)右鍵