JS實現刷新iframe的(de)方法(fǎ)
<iframe src="1.htm" name="ifrmname" id="ifrmid"></iframe>
方案一:用(yòng)iframe的(de)name屬性定位
<input type="button" name="Button" value="Button"
onclick="document.frames('ifrmname').locations.reload()">
或
<input type="button" name="Button" value="Button"
onclick="document.all.ifrmname.document.locations.reload()">
方(fāng)案二:用iframe的id屬性定位(wèi)
<input type="button" name="Button" value="Button"
onclick="ifrmid.window.locations.reload()">
終極方案:當iframe的src為其它網(wǎng)站地址(跨域操作時)
<input type="button" name="Button" value="Button"
onclick="window.open(document.all.ifrmname.src,'ifrmname','')">
關鍵詞:JS,iframe
閱讀本文後您有什麽感想? 已有 人給出評價!
- 3
- 5
- 6
- 74
- 4
- 2