2016-02-10 87 views
-6

我添加了Javascript附加鏈接複製到我的博客,意味着有人從我的網站複製文本時,它也會複製博客文章的URL並添加閱讀更多標記,所以我想修改此腳本,當有人複製最少20個字符時,這段代碼將複製在剪貼板中讀取更多標籤,如果用戶複製少於20個字,那麼這個腳本不應該工作。所以如果有人能做到這一點,這將是非常有益的。 感謝Javascript附加鏈接複製

原創劇本 -

<script type="text/javascript"> 
function addLink() { 
    var body_element = document.getElementsByTagName('body')[0]; 
    var selection; 
    selection = window.getSelection(); 
    var pagelink = "<br /><br /> Read more at: <a href='"+document.location.href+"'>"+document.location.href+"</a><br />"; // change this if you want 
    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; 
</script> 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> 
</script> 

回答

-2

試試這個。每當選擇的長度小於20時,該功能將返回選擇。

<script type="text/javascript"> 
function addLink() { 
    var body_element = document.getElementsByTagName('body')[0]; 
    var selection; 
    selection = window.getSelection(); 
    if(selection.toString().length<20) 
    { 
     return selection; 
     } 
    var pagelink = "<br /><br /> Read more at: <a href='"+document.location.href+"'>"+document.location.href+"</a><br />"; // change this if you want 
    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; 
</script> 
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> 
</script> 
+0

嗨Sooraj Chandran,感謝您的回答,但在使用您的代碼後,當我從站點複製少於20個字符時,它甚至不復制這20個字符。所以請修改它,以便它可以複製少於20個字符,但如果嘗試複製超過20個字符,則會顯示一個讀取更多標記。 –

+0

我編輯了代碼。請立即檢查。 –

+0

謝謝你。你讓我今天一整天都感覺很好 –