我的页面上有iframe。 iframe的src是来自另一个域的页面(我与它们进行跨域通信)。当我打开iframe时,我需要用另一个页面更改它。对于Chrome,我这样做:
frames['iframe_id'].location.href=URL;
iframe.sandbox = 'allow-forms allow-scripts allow-same-origin';
我怎样才能在Firefox中做类似的事情?
答案 0 :(得分:0)
解决了,简单的方法:
var iframe = document.getElementsByName(“id”);
document.getElementById('id')。src = URL;
答案 1 :(得分:0)
解决。 Firefox不需要像沙盒这样的东西。