下面以三個頁面分別命名為frame.html、top.html、bottom.html為例來具體說明如何做。
frame.html 由上(top.html)下(bottom.html)兩個頁面組成,程式碼如下:
複製程式碼 程式碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> frame </TITLE> </HEAD> <frameset rows="50%,50%"> <frame name=top src="top.html"> <frame name=bottom src="bottom.html"> </frameset> </HTML>
現在假設top.html (即上面的頁面) 有七個button來實作對bottom.html (即下面的頁面) 的刷新,可以用以下七種語句,哪個好用自己看著辦了。
top.html 頁面的程式碼如下:
程式碼 程式碼如下:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <TITLE> top.html </TITLE> </HEAD> <BODY> <input type=button value="刷新1" onclick="window.parent.frames[1].location.reload()"><br> <input type=button value="刷新2" onclick="window.parent.frames.bottom.location.reload()"><br> <input type=button value="刷新3" onclick="window.parent.frames['bottom'].location.reload()"><br> <input type=button value="刷新4" onclick="window.parent.frames.item(1).location.reload()"><br> <input type=button value="刷新5" onclick="window.parent.frames.item('bottom').location.reload()"><br> <input type=button value="刷新6" onclick="window.parent.bottom.location.reload()"><br> <input type=button value="刷新7" onclick="window.parent['bottom'].location.reload()"><br> </BODY> </HTML>
##下面是bottom.html頁面原始碼,為了證明下方頁面的確被刷新了,在裝載完頁面彈出一個對話框。
複製程式碼 程式碼如下:##<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> bottom.html </TITLE>
</HEAD>
<BODY onload="alert('我被加载了!')">
<h1>This is the content in bottom.html.</h1>
</BODY>
</HTML>
說明:
複製程式碼 程式碼如下:
2.parent指的是目前頁面的父親頁面,也就是包含它的框架頁。例如對此例它指的是framedemo.html。 3.frames是window對象,是一個陣列。代表著該框架內所有子頁面。 4.item是方法。傳回數組裡面的元素。
5.如果子頁面也是個框架頁面,裡面還是其它的子頁面,那麼上面的有些方法可能不行。
附:
Javascript刷新頁面的幾個方法:
#1 history.go(0)
2 location.reload()
3 location=location
4 location.assign(location)
5 document.execCommand('Refresh')
6 window.navigate(location)
7 location.replace(location)
8 document.URL=location.href
1.頁面自動刷新:將以下程式碼加入
區域中 其中20指每隔20秒刷新一次頁面.<script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 </script>
複製程式碼 程式碼如下:1 PrintWriter out = response.getWriter();
2 out.write("<script type=\"text/javascript\">");
3 ////子窗口刷新父窗口
4 out.write("self.opener.location.reload();");
5 //关闭窗口
6 out.write("window.opener=null;");
7 out.write("window.close();");
8 out.write("</script>");
1.如何刷新包含該框架的頁面用
複製程式碼 程式碼如下:<script language=JavaScript>
parent.location.reload();
</script>
复制代码 代码如下: 复制代码 代码如下: 复制代码 代码如下: 以上是幾種使用javascript的頁面刷新方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!<script language=JavaScript>
self.opener.location.reload();
</script>
3.如何刷新另一个框架的页面用 (上面的实例以说明了)语句1. window.parent.frames[1].location.reload();
语句2. window.parent.frames.bottom.location.reload();
语句3. window.parent.frames["bottom"].location.reload();
语句4. window.parent.frames.item(1).location.reload();
语句5. window.parent.frames.item('bottom').location.reload();
语句6. window.parent.bottom.location.reload();
语句7. window.parent['bottom'].location.reload();
4.如果想关闭窗口时刷新或者想开窗时刷新的话,在中调用以下语句即可。<body onload="opener.location.reload()">
开窗时刷新
<body onUnload="opener.location.reload()">
关闭时刷新
<script language="javascript"> window.opener.document.location.reload()
</script>
JavaScript 实现页面跳转的几种方法:
window.location.href="new.jsp?msg='hello";
self.location='new.jsp?pam='omg';
window.navigate("new.jsp") ;
top.location="show.jsp";