酱茄 jiangqie.com
多人问wordPress/ target=_blank class=infotextkey>WordPress文章怎么防止别人复制,今天酱茄小编把代码分享给大家,通过下面的JS代码即可有效的防止别人直接复制你的文章,用frame标签引用你的文章时,会自动跳转到文章正常链接,同时禁止右键菜单。
使用方法:
打开当前主题头部模板header.php找到:<!--?php wp_head(); ?-->将下面代码添加到后面:
// 酱茄 jiangqie.com 禁止右键 document.oncontextmenu = function() { return false }; // 酱茄 jiangqie.com 禁止图片拖放 document.ondragstart = function() { return false }; // 酱茄 jiangqie.com 禁止选择文本 document.onselectstart = function() { if (event.srcElement.type != "text" && event.srcElement.type != "textarea" && event.srcElement.type != "password") return false; else return true; }; if (window.sidebar) { document.onmousedown = function(e) { var obj = e.target; if (obj.tagName.toUpperCase() == "INPUT" || obj.tagName.toUpperCase() == "TEXTAREA" || obj.tagName.toUpperCase() == "PASSWORD") return true; else return false; } }; // 酱茄 jiangqie.com 禁止frame标签引用 if (parent.frames.length > 0) top.location.replace(document.location);
当然上面的方法,也只是忽悠一下小白,浏览器禁用JAVAScript后,将失去效果。
文章来自: https://www.jiangqie.com/jc/6540.html