1. 程式人生 > >禁止IOS長按複製貼上

禁止IOS長按複製貼上

/*設定IOS頁面長按不可複製貼上,但是IOS上出現input、textarea不能輸入,因此將使用-webkit-user-select:auto;*/
*{
    -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,textarea {
    -webkit-user-select:auto; /*webkit瀏覽器*/
    margin: 0px;
    padding: 0px;
    outline: none;
}