欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

web页面防复制代码

程序员文章站 2022-05-14 22:21:53
...

页面要防止别人直接做复制操作,只需要加上几句js脚本:

    

<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()">

<noscript><iframe src=* > </iframe></noscript>

正文内容

</body>
同样的,要想复制别人已经禁止的复制操作,只需要在浏览器中设置中将脚本禁掉即可。

转载于:https://my.oschina.net/u/232879/blog/140488