關(guān)鍵字描述:版權(quán) 功能 實現(xiàn) 加上 自動 復(fù)制 文章 類似 " text
俠客介紹,復(fù)制文章時帶有版權(quán)功能并不復(fù)雜,代碼如下:
<script type="text/javascript">
document.body.oncopy = function () { setTimeout( function () { var text = clipboardData.getData("text"); if (text) { text = text " 本篇文章來源于 www. 原文鏈接:" location.href; clipboardData.setData("text", text); } }, 100 ) }
</script>