get新技能是需要付出行动的,即使看得再多也还是要动手试一试。今天图老师小编跟大家分享的是JS实现刷新iframe的方法,一起来学习了解下吧!
【 tulaoshi.com - Web开发 】
iframe src="1.htm" name="ifrmname" id="ifrmid"/iframe方案一:用iframe的name属性定位
input type="button" name="Button" value="Button"onclick="document.frames('ifrmname').location.reload()"
或
input type="button" name="Button" value="Button"onclick="document.all.ifrmname.document.location.reload()"
方案二:用iframe的id属性定位
input type="button" name="Button" value="Button"onclick="ifrmid.window.location.reload()"
终极方案:当iframe的src为其它网站地址(跨域操作时)
(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)input type="button" name="Button" value="Button"onclick="window.open(document.all.ifrmname.src,'ifrmname','')"(本文来源于图老师网站,更多请访问http://www.tulaoshi.com/webkaifa/)
来源:http://www.tulaoshi.com/n/20160219/1612842.html
看过《JS实现刷新iframe的方法》的人还看了以下文章 更多>>