看标题,大家就知道这个功能经常会遇见,复制某段网页文字或代码,粘贴的时候会带有该网页的一些标题或链接,可以起到提醒转载者注意保留原文链接的作用。
本文今天就给大家带来两种写法,先将代码添加至网页的head头部中,WordPress主题可以将此代码添加到header.php的头部模板当中的[code]<?php wp_head();?>[/code]上方即可。
切记不要忘记将代码放在:
- <script = “text/javascript”>代码示例</script>
第一种代码:
- 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;
在WordPress主题当中添加了以上代码后,别人在你网站上复制任何内容,粘贴的时候都会带上网站标题以及链接地址,使用时修改其中的版权信息。(不过貌似不支持低版本的IE浏览器,自行取舍)
谢谢分享!
给力!谢谢分享!