禁止網頁另存為的代碼


不用js也可以控制禁止右鍵!

<!--禁止右鍵-->

<body oncontextmenu="return false"></body>

<!--禁止網頁另存為: --> 

<noscript><iframe src=*.html></iframe></noscript>

<!-- 禁止選擇文本: --> 

<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 
document.onmouseup=reEnable 
} 
</script>

1. oncontextmenu="window.event.returnvalue=false" 將徹底屏蔽鼠標右鍵 
<table border oncontextmenu=return(false)><td>no</table> 可用於Table


2. <body onselectstart="return false"> 取消選取、防止復制


3. onpaste="return false" 不准粘貼


4. oncopy="return false;" oncut="return false;" 防止復制


5. <link rel="Shortcut Icon" href="favicon.ico"> IE地址欄前換成自己的圖標


6. <link rel="Bookmark" href="favicon.ico"> 可以在收藏夾中顯示出你的圖標


7. <input style="ime-mode:-Disabled"> 關閉輸入法


8. 永遠都會帶着框架 
<script language="javascript">
if (window == top)top.location.href = "frames.htm"; //frames.htm為框架網頁 
</script>


9. 防止被人frame 
<SCRIPT LANGUAGE=javascript>
if (top.location != self.location)top.location=self.location; 
</SCRIPT>

 

11. <input type=button value=查看網頁源代碼 
onclick="window.location = `view-source:`+ http://www.tonightdream.com/`";>


12.刪除時確認 

<a href=`javascript:if(confirm("確實要刪除嗎?"location="boos.asp?&areyou=刪除&page=1"`>刪除</a>

13. 取得控件的絕對位置 
//javascript 
<script language="javascript"> 
function getIE(E){ 
var t=e.offsetTop; 
var l=e.offsetLeft; 
while(e=e.offsetParent){ 
t+=e.offsetTop; 
l+=e.offsetLeft;}}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM