这是关于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'
感谢您的帮助!
答案 0 :(得分:0)
你确定除了iframe之外别无他法吗?
答案 1 :(得分:0)
这是可能的。设置onload事件以触发布尔'iframe done'然后遍历这些布尔并检查哪些iframe已完成或打开。