uiwebview禁止copy,禁止選中的方法

js控制

document.documentElement.style.webkitTouchCallout = “none”; //禁止彈出菜單

document.documentElement.style.webkitUserSelect = “none”;//禁止選中



或者樣式控制

<style type="text/css">

    *{

         -webkit-touch-callout:none;
        -webkit-user-select:none; 

    }

 </style>


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章