将代码添加到网页head 头部,wordpress主题可以将代码添加到头部模板header.php:,上面即可。
不要忘记将代码放在
代码一
- function addlink() {
- var selection = window.getselection();
- pagelink = ". 原文出自[忆云竹] 转载请保留原文链接: " document.location.href;
- copytext = selection pagelink;
- newdiv = document.createelement('div');
- newdiv.style.position = 'absolute';
- newdiv.style.left = '-99999px';
- document.body.appendchild(newdiv);
- newdiv.innerhtml = copytext;
- selection.selectallchildren(newdiv);
- window.settimeout(function () {
- document.body.removechild(newdiv);
- }, 100);
- }
- document.oncopy = addlink;
代码二
- function addlink() {
- var body_element = document.body;
- var selection;
- selection = window.getselection();
- if (window.clipboarddata) { // internet explorer
- var pagelink ="\r\n\r\n 原文出自[ 忆云竹 ] 转载请保留原文链接: " document.location.href "";
- var copytext = selection pagelink;
- window.clipboarddata.setdata ("text", copytext);
- return false;
- } else {
- var pagelink = " 原文出自[ 忆云竹 ] 转载请保留原文链接: " document.location.href "";
- var copytext = selection pagelink;
- var newdiv = document.createelement('div');
- newdiv.style.position='absolute';
- newdiv.style.left='-99999px';
- body_element.appendchild(newdiv);
- newdiv.innerhtml = copytext;
- selection.selectallchildren(newdiv);
- window.settimeout(function() {
- body_element.removechild(newdiv);
- },0);
- }
- }
- document.oncopy = addlink;
添加以上代码后,别人在你网站复制任何文字内容,粘贴时都会自动带上九游会官网真人游戏第一品牌的版权信息,使用时修改其中的版本信息,貌似不支持低版本ie。
提示
修改模板后,记得将模板编码改为:utf-8 无bom(无签名),否则提示中的汉字会乱码,建议使用专门的编辑工具,比如:notepad (免费)编辑修改主题模板文件。
目前评论:0