我有一个包含 iframe 的 jsp 文件。
<html>
<body>
<iframe name="appcontentframe" id="appcontentframe" src="something.jsp" frameborder="0"
style="position:absolute; top:0px; bottom:0px; border:0px;">
<button name="tst" onclick="parent.location.reload();" > Test</button>
</iframe>
</body>
</html>
现在在 javascript 中,我动态地将 iframe 的 src 更改为 other.jsp。在 iframe 页面中,我有一个按钮
<button name="tst" onclick="parent.location.reload();" > Test</button>
重新加载整个页面。当我单击此按钮时,在所有其他浏览器中,iframe 包含硬编码为“something.jsp”的 src,但在 FF 3.x 系列中,它加载“other.jsp”。但是当我按下浏览器的刷新时,它会加载“something.jsp”。我的要求是,它也应该在单击“测试”按钮时加载 somthing.jsp。