提示:
<pre class="c" name="code">window.location.reload();
不過問題在於,你在哪裡做這個動作?如果不是在iframe裡面,那可以用:
<pre class="c" name="code">document.getElementsByName('top')[0].contentWindow.location.reload();
如果希望在所有的frame都可以操作,那最好把控制寫在iframe之外,例如你寫成函數:
<pre class="c" name="code">
function() topReload{
document.getElementsByName('top')[0].contentWindow.location.reload();
然後在底下的frame只要使用top.topReload()就可以,不過這會受到sop(same origin policy)的限制,frame內的網頁跨domain的話,就無法這樣呼叫了。