这是我很久以前在网上收集到的一些好东东,大家一起学习学习。免得大家再去苦寻难觅了。
禁止鼠标左右键代码/禁止网页选中/禁止另存为/防复制代码
这么好的内容,都是本人一直在用的,分享给大家,楼主发帖子很辛苦,回个帖子可见。
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