使用JavaScript實現訪問本網站任何頁面都載入Frame的一種實現方式

來源:互聯網
上載者:User
javascript|訪問|載入|頁面|網站

default.asp

<HTML>
  <HEAD>
     <TITLE>我的首頁</TITLE>
     <META content="text/html; charset=gb2312" http-equiv=Content-Type>
     <META content="MSHTML 5.00.3315.2870" name=GENERATOR>
  </HEAD>
  <%
'用來判斷右側Frame的顯示頁面
   dim addr
   addr=request("url")
   if url="" then
    url="left.htm"
   end if
  %>
  <FRAMESET rows=81,*>
     <FRAME name=Top scrolling=no src="top.htm">
     <FRAMESET cols=238,* noresize>
       <FRAME name=Left scrolling=no src=<%=url%>>
       <FRAME name=Main src="index.htm">
     </FRAMESET>
  </FRAMESET>
</HTML>

index.htm

<html>
 <head>
<script>  
  try{  
  if(parent.frames('Top'))    
  alert("存在mainFrame");
  }  
  catch(e)  
 { window.open("http://10.69.17.119/OpenFrame/default.asp?url='" + document.location + "'","_self");
 }
  </script>
</head>
 <body >
  這是<h1>Index</h1>頁面
 </body>
</html>

chk.js

function  LoadFrame()
{
  try{  
  if(parent.frames('Top') && parent.frames('Left') && parent.frames('Main'))    
  alert("已經在Frame中開啟網頁");
  }  
  catch(e)  
 { window.open("http://10.69.17.119/OpenFrame/default.asp?url='" + document.location + "'","_self");
 }
}

left.htm

<html>
 <head>
 </head>
 <body >
  這是<h1>Left</h1>頁面
 </body>
</html>

top.htm

<html>
 <head>
 </head>
 <body">
  這是<h1>Top</h1>頁面
 </body>
</html>

本例中只對index.htm進行了限制,如果有多個頁面需要再處理!
相對比較簡單沒有太多的注釋,希望能看懂!

 



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.