wordpress文章内容禁止复制方法

首先要说的是,该方法只防君子,防不了小人。。。

方案一

在header.php或者footer.php中加入:

<script>
function stop(){
alert('谢绝复制转载!');
return false;
}
document.oncontextmenu=stop;
</script>
<body onpaste="return false" oncopy="return false;" oncut="return false;"></body>

方案二

在header.php或者footer.php中加入:

<style>
body{
    -moz-user-select: none;
}
</style>
<noscript><iframe src=*.html></iframe></noscript>

评论

评论正在提交中...请稍后
评论提交成功...