如何使用javascript同时加载iframe

时间:2014-06-17 05:06:30

标签: javascript php jquery

如何使用javascript或jquery同时加载iframe? 示例:我有iframe [0],iframe [1],iframe [2],iframe [3],如何同时加载它们?

2 个答案:

答案 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');