屏蔽网页打印,屏蔽网页复制,选择,右键
作者:BJ 日期:2010-02-22
一、
<script language="javascript">
//屏蔽打印,实际上是隐藏了打印内容
function hide() {
document.getElementById('secretcontent').style.display = 'none';
}
function show() {
document.getElementById('secretcontent').style.display ="";
}
document.oncontextmenu=new Function("event.returnValue=false;"); //禁止右键功能,单击右键将无任何反应
document.onselectstart=new Function("event.returnValue=false;"); //禁止先择,也就是无法复制
</script>
二、
<body onbeforeprint="hide()" onafterprint="show()">
<div id="secretcontent">
内容内容内容内容内容内容内容内容内容内容内容内容
</div>
评论: 0 | 引用: 0 | 查看次数: 210
发表评论
上一篇
下一篇

文章来自:
Tags:
相关日志:












