剪贴板 注明文章出处

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script type="text/javascript">
        function modifyClipboard() {
//            clipboardData.setData('Text',clipboardData.getData('Text')+'此文来源于'+location.href);
            var text = clipboardData.getData("text");
            text = text + "本文来源:" + location.href;
            clipboardData.setData("Text",text);
        }
    </script>
</head>
<!--<body oncopy="alert('禁止复制');return false">-->
<body  oncopy="setTimeout('modifyClipboard()',100);">
<input type="button" value="分享本页给好友" onclick="clipboardData.setData('text','我发现一个很好玩的网页'+location.href);alert('赶紧通过qq传送给你的好友');" />
<!--<p>这篇文章不允许复制,不信?  你试试</p>-->

<input type="text" />
<input type="text" onpaste="alert('为保证您填写的手机号的正确性,请勿粘贴');return false" />

<p>这篇文章的所属权属于先生 请注明出处  谢谢</p>
</body>
</html>

posted @ 2012-11-23 15:47  FiberHomer  阅读(132)  评论(0编辑  收藏  举报