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

来源:互联网 发布:买家淘宝怎么发买家秀 编辑:程序博客网 时间:2024/06/16 04:43

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

-webkit-touch-callout: none;


<body leftmargin=0 topmargin=0  oncontextmenu='return false' ondragstart='return false' onselectstart ='return false' onselect='document.selection.empty()' oncopy='document.selection.empty()' onbeforecopy='return false' onmouseup='document.selection.empty()'> 


手机端 禁止复制

*{-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;}


阅读全文
0 0
原创粉丝点击