博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

防止网页被切屏

Posted on 2009-03-16 16:43  ^_^木头人  阅读(348)  评论(0)    收藏  举报
防止被Print Screen
<script language="javascript">
<!--
function testclip(){
try {
   if(clipboardData.getData("Text")||clipboardData.getData("HTML")||clipboardData.getData("URL"))
    {
    null;
    }
   }
catch(e){
   clipboardData.setData("Text","")
   }
setTimeout("testclip()",500)
}
testclip();
//-->
</script>
以上代码都加在</head>前面