如何使用javascript或jquery同时加载iframe? 示例:我有iframe [0],iframe [1],iframe [2],iframe [3],如何同时加载它们?
答案 0 :(得分:3)
设置他们的src
属性:
$("iframe").each(function () {
$(this).attr("src", ...);
});
答案 1 :(得分:0)
jQuery的用法很好,但它也可以用纯JS,甚至IE8都支持它。 ;)
el.setAttribute('attribute', value);
在你的情况下,它将是:
el.setAttribute('src', 'the/path/to/whatever');