如何实现在网页复制后加上网站的来源href
生活随笔
收集整理的這篇文章主要介紹了
如何实现在网页复制后加上网站的来源href
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
<head runat="server">
??? <title>無標題頁</title>
??? <script language=javascript type="text/javascript">
??????? function modifyclipboard(){
???????????
?????????? var txt=clipboardData.getData("text");
?????????? txt=txt+"你好,歡迎訪問本站:"+location.href;
?????????? clipboardData.setData("text",txt);
??????????
??????? }
???????
??? </script>
</head>
<body? οncοpy="setTimeout('modifyclipboard()',100)">
??? <input type=text maxlength=11 />
??? <input type=text maxlength=11 οnpaste="return false" />
?
??? </body>
總結
以上是生活随笔為你收集整理的如何实现在网页复制后加上网站的来源href的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: DOM碰到的小问题
- 下一篇: History操作历史记录