οncοntextmenu='return false' //禁止右键
οndragstart='return false' //禁止拖动
onselectstart ='return false' //禁止选中
οnselect='document.selection.empty()' //禁止选中
οncοpy='document.selection.empty()' //禁止复制
onbeforecopy='return false' // 禁止复制
οnmοuseup='document.selection.empty()'
*{
moz-user-select: -moz-none
-moz-user-select: none
-o-user-select:none
-khtml-user-select:none
-webkit-user-select:none
-ms-user-select:none
user-select:none
}
长按事件document.addEventListener("touchstart", function (e) { console.log('touchstart') timer = setTimeout(function () { console.log('LongPress') e.preventDefault() LongPress(parentObj) }, 800) }) document.addEventListener("touchmove", function (e) { console.log('touchmove') clearTimeout(timer) timer = 0 }) document.addEventListener("touchend", function (e) { console.log('touchend') clearTimeout(timer) if (timer != 0) { alert('这是点击,不是长按') } return false })复制链接浏览器中打开,该如何 *** 作,下面给大家来介绍下。
1、首先在手机中打开微信,找到好友对话。
2、然后在聊天页面,长按网址点击复制。
3、复制完成后,打开手机浏览器,点击搜索框。
4、在输入网址栏下显示刚复制的链接,点击链接。
5、最后打开进入网页,就完成了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)