HTML页面内容禁止选择、复制、右键、禁用移动端长按a标签弹窗

iphone长按a标签弹窗 禁用;给a标签设置css:

-webkit-touch-callout: none;


 


手机端 禁止复制

*{

-webkit-touch-callout:none;

-webkit-user-select:none;

-khtml-user-select:none;

-moz-user-select:none;

-ms-user-select:none;

user-select:none;

-o-user-select:none;

}


你可能感兴趣的:(Web开发)