现在解决的不是一个id就能搞定的问题,突然觉得自己好屌!
代码里面的iframe标签都是ExtJs打上去的,所以根本没去花精力去找生成的地方,
即使找到了,修改框架也是不科学的,
不废话了,开始使用的是:
var alla = window.parent.frames; for( i in alla){ console.log(alla[i].location.href); if(alla[i].location.pathname=='对应的iframe链接'){ alla[i].location.reload(); } }
这么做,之后一刷新,OK了,激动的我 不要不要的!
...然而,在谷歌上一跑,报错了,获取不到.pathname,
原因是谷歌只能获取最顶级的iframe,
而火狐可以获取嵌套的所有iframe, 把parent换成top也不好使
最后
<script> var alla = window.parent.window.document.getElementsByTagName('iframe'); for( i in alla){ console.log(alla[i].getAttribute('src')); if(alla[i].getAttribute('src')=='live/index'){ alla[i].src='live/index'; } } </script>
搞定了,于是自己吊炸天了
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。