22 8 月 2013

js控制在网页中禁用右键和禁止另存为

来自网络

不用js也可以控制禁止右键!方法:

<!–禁止网页另存为: –>

<noscript><iframe src=*.html></iframe></noscript><!– 禁止选择文本: –>
<script type=”text/javascript”>// <![CDATA[
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
document.onmouseup=reEnable
}
// ]]></script>

<!– 禁用右键: –>
<script type=”text/javascript”>// <![CDATA[
function stop(){
return false;
}
document.oncontextmenu=stop;
// ]]></script>

3 comments

  1. 如果要复制是 防不住的

  2. 恩。仿不胜仿