Tip: you can modify some code before running
<html><body>Is it sad that the articles I 've worked so hard to write are easily copied and pasted by others? Now, let's teach you how to automatically add your copyright information at the end of the article when someone else replicates his/her article. Please try to copy this article and paste it into your notepad to see if the text "This article is reproduced from Yunlong network" is automatically displayed at the end of the article. The method is as follows: add at the end of the webpage:<script type="text/javascript">Document. body. oncopy = function () {setTimeout (function () {var text = clipboardData. getData ("text"); if (text) {text = text + "rn this article is from: webpage special effect Network (www.111cn.net) detailed source reference:" + location. href; clipboardData. setData ("text", text) ;}, 100 )}</script></body></html>This code is provided by the webpage special effect network.
Tip: you can modify some code before running