iframe如何刷新的三种实现⽅案
复制代码
代码如下:
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe>
⽅案⼀:
⽤iframe的name属性定位
复制代码
代码如下:
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').load()">或
<input type="button" name="Button" value="Button" onclick="document.all.ifrmname.load()">
⽅案⼆:
⽤iframe的id属性定位
复制代码
代码如下:
<input type="button" name="Button" value="Button" onclick="ifrmid.load()">
终极⽅案:
当iframe的src为其它⽹站地址(跨域操作时)
复制代码
iframe嵌套页面加载慢代码如下:
<input type="button" name="Button" value="Button" onclick="window.open(document.all.ifrmname.src,'ifrmname','')">

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。