js 刷新iframe

方法一:用iframe的name属性定位

      document.frames('ifrmname').location.reload()
方法二:用iframe的id属性定位
       ifrmid.window.location.reload()
跨域操作时:当iframe的src为其它网站地址
        window.open(href,'ifrmname');//href为路径

你可能感兴趣的:(js iframe)