JS 禁止右键,禁止复制,禁止粘贴
如何用用javascript 禁止右键,禁止复制,禁止粘贴,做站时常会用到这些代码,所以收藏了一下!
1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键特效
<table border oncontextmenu=return(false)><td>no</table> 可用于Table
2. <body onselectstart="return false"> 取消选取、防止复制 javascript技巧
3. onpaste="return false" 不准粘贴技巧
4. oncopy="return false;" oncut="return false;" 防止复制的javascirpt特效
另一种
=======================================================
<body
oncontextmenu=‘return false‘
ondragstart=‘return false‘
onselectstart =‘return false‘
onselect=‘document.selection.empty()‘
oncopy=‘document.selection.empty()‘
onbeforecopy=‘return false‘
onmouseup=‘document.selection.empty()‘>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。