Ajax Iframes - >检查是否忙?

时间:2010-12-24 18:23:50

标签: php javascript ajax iframe

这是关于Ajax Iframes的问题。

我有一个打开iframe的功能,并设置其来源,但是在某些时候我需要打开多个Iframe,并相应地设置它们的来源。第二个iframe只有在第一个iframe没有完成加载时才会打开。

Psudocode:

//在某些时候

x = iframe;
x.src = 'dothiscode.php'

//稍后某点

if (x.src = not finished loading)
  y = new iframe;
  y.src = 'domorecode.php'
else
  x.src = 'domorecode.php'

感谢您的帮助!

2 个答案:

答案 0 :(得分:0)

你确定除了iframe之外别无他法吗?

答案 1 :(得分:0)

这是可能的。设置onload事件以触发布尔'iframe done'然后遍历这些布尔并检查哪些iframe已完成或打开。