无法在Firefox中更改iframe。类似于沙箱

时间:2013-02-22 12:50:02

标签: google-chrome firefox iframe cross-domain sandbox

我的页面上有iframe。 iframe的src是来自另一个域的页面(我与它们进行跨域通信)。当我打开iframe时,我需要用另一个页面更改它。对于Chrome,我这样做:

    frames['iframe_id'].location.href=URL;
iframe.sandbox = 'allow-forms allow-scripts allow-same-origin'; 

我怎样才能在Firefox中做类似的事情?

2 个答案:

答案 0 :(得分:0)

解决了,简单的方法: var iframe = document.getElementsByName(“id”);
document.getElementById('id')。src = URL;

答案 1 :(得分:0)

解决。 Firefox不需要像沙盒这样的东西。