屏蔽网页打印,屏蔽网页复制,选择,右键

一、
<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>

 



文章来自: 本站原创
引用通告: 查看所有引用 | 我要引用此文章
Tags:
相关日志:
评论: 0 | 引用: 0 | 查看次数: 210
发表评论
昵 称:
密 码: 游客发言不需要密码.
邮 箱: 支持Gravatar头像.
网 址: 输入网址便于回访.
内 容:
验证码:
选 项:
虽然发表评论不用注册,但是为了保护您的发言权,建议您注册帐号.
字数限制 1000 字 | UBB代码 关闭 | [img]标签 关闭