您现在的位置:首页 >> 建站经验 >> 内容

禁止鼠标左右键代码/禁止网页选中/禁止另存为/防复制代码

时间:2009/9/5 11:35:38 点击:4565

  核心提示:这是我很久以前在网上收集到的一些好东东,大家一起学习学习。免得大家再去苦寻难觅了。禁止鼠标左右键代码/禁止网页选中/禁止另存为/防复制代码这么好的内容,都是本人一直在用的,分享给大家,楼主发帖子很辛苦,回个帖子可见。1、禁止鼠标左右键 SCRIPT language=javascript !-- i...

这是我很久以前在网上收集到的一些好东东,大家一起学习学习。免得大家再去苦寻难觅了。

禁止鼠标左右键代码/禁止网页选中/禁止另存为/防复制代码

这么好的内容,都是本人一直在用的,分享给大家,楼主发帖子很辛苦,回个帖子可见。



1、禁止鼠标左右键 <script language=javascript> 

<!-- 

if (window.event) 

document.captureevents(event.mouseup); 

function nocontextmenu(){ 

event.cancelbubble = true 

event.returnvalue = false; 

return false; 

}  

function norightclick(e){ 

if (window.event){ 

if (e.which == 2 || e.which == 3) 

return false; 

else 

if (event.button == 2 || event.button == 3){ 

event.cancelbubble = true 

event.returnvalue = false; 

return false; 

}  

document.oncontextmenu = nocontextmenu; // for ie5+ 

document.onmousedown = norightclick; // for all others 

//--> 

</script>
复制代码2、禁止选中代码 <script language=javascript>

document.oncontextmenu=new function("event.returnvalue=false;");

document.onselectstart=new function("event.returnvalue=false;");

</script>
复制代码3、禁止另存为 <noscript>u ]r=r

<iframe src="*.htm"></iframe>

</noscript>
复制代码4、防拷贝/复制代码 <body leftmargin=0 topmargin=0>
复制代码5、禁止选择文本 <script type="text/javascript">

var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){

if (omitformtags.indexof(e.target.tagname.tolowercase())==-1)

return false

}

function reenable(){

return true

}

if (typeof document.onselectstart!="undefined")

document.onselectstart=new function ("return false")

else{

document.onmousedown=disableselect

作者:冷月湖 来源:亿万站
相关评论
发表我的评论
  • 大名:
  • 内容:
  • 亿万站网址导航-站长之家(www.yiwanzhan.cn) © 2006-2024 版权所有 All Rights Reserved.
  • Email:xiegr71@163.com 站长QQ:329700870 京ICP备07500142号