dembuon.vn và paste thử.

Cách 2: Copy sẽ ghi nguồn & Chỉ lấy được phần text

HTML:

<script type="text/javascript">

function addLink() {

//Get the selected text and append the extra info

var body_element = document.getElementsByTagName('body')[0];

var selection;

selection = window.getSelection();

var pagelink = "<br /><br /> Nguồn bài viết: <a href='"+document.location.href+"'>"+document.location.href+"</a>";

var copytext = selection + pagelink;

var newdiv = document.createElement('div');

//hide the newly created container

newdiv.style.position='absolute';

newdiv.style.left='-99999px';

//insert the container, fill it with the extended text, and define the new selection

body_element.appendChild(newdiv);

newdiv.innerHTML = copytext;

selection.selectAllChildren(newdiv);

window.setTimeout(function() {

body_element.removeChild(newdiv);

},0);

}

document.oncopy = addLink;

</script>