利用CSS禁止手機長按出現氣泡: 複製、選擇等功能

能夠用  * ,也可做用於一個divcss

div{
  -webkit-touch-callout:none;  /*系統默認菜單被禁用*/
  -webkit-user-select:none; /*webkit瀏覽器*/
  -khtml-user-select:none; /*早期瀏覽器*/
  -moz-user-select:none; /*火狐*/
  -ms-user-select:none;  /*IE10*/
  user-select:none;
}

這種方法會致使input輸入框不可用,能夠添加這一句解決這個問題:html

input{
  -webkit-user-select: auto;
}
相關文章
相關標籤/搜索