1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > javascript终极屏蔽右键/禁止复制/禁止另存/禁止右键/禁止选取/禁止粘贴的方法...

javascript终极屏蔽右键/禁止复制/禁止另存/禁止右键/禁止选取/禁止粘贴的方法...

时间:2019-09-14 23:34:14

相关推荐

javascript终极屏蔽右键/禁止复制/禁止另存/禁止右键/禁止选取/禁止粘贴的方法...

Code

禁止另存代码:

<noscript>

<iframesrc="/*>";</iframe>

</noscript>

禁止复制代码:

<body

oncontextmenu='returnfalse'

ondragstart='returnfalse'

onselectstart='returnfalse'

onselect='document.selection.empty()'

oncopy='document.selection.empty()'

onbeforecopy='returnfalse'

onmouseup='document.selection.empty()'>

禁止右键:

<scriptlanguage="JavaScript">document.oncontextmenu=function(){returnfalse;}</script>

禁止选取:

<bodyoncontextmenu="returnfalse"ondragstart="returnfalse"onselectstart="returnfalse"onselect="document.selection.empty()"oncopy="document.selection.empty()"onbeforecopy="returnfalse"onmouseup="document.selection.empty()>

禁止粘贴:

<inputtype=textonpaste="returnfalse">

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。