您好,登錄后才能下訂單哦!
現(xiàn)在解決的不是一個id就能搞定的問題,突然覺得自己好屌!
代碼里面的iframe標(biāo)簽都是ExtJs打上去的,所以根本沒去花精力去找生成的地方,
即使找到了,修改框架也是不科學(xué)的,
不廢話了,開始使用的是:
var alla = window.parent.frames; for( i in alla){ console.log(alla[i].location.href); if(alla[i].location.pathname=='對應(yīng)的iframe鏈接'){ alla[i].location.reload(); } }
這么做,之后一刷新,OK了,激動的我 不要不要的!
...然而,在谷歌上一跑,報(bào)錯了,獲取不到.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>
搞定了,于是自己吊炸天了
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。