我有一个功能可以在单击按钮时刷新 iframe 内容。
function changeContent(){
iframe.newContent();
// wait until content contains string "hey"
return true;
}
我想使用while循环,我怎样才能让函数在字符串上等待直到返回true?这就是我现在访问 iframe 的方式:
var MyIFrame = document.getElementById("myframe");
var MyIFrameDoc = (MyIFrame.contentWindow || MyIFrame.contentDocument);
if (MyIFrameDoc.document) MyIFrameDoc = MyIFrameDoc.document;
谢谢