菜单

JS判断flash加载完成

2010年06月1日 - flash

var start;
var intervalProcess;
window.onload = function () {
if(document.all) {
start = setInterval(‘checkOnLoad()’, 500);
} else {
intervalProcess = setInterval(“checkFlashLoaded()”, 500);
}
}
function checkOnLoad() {
if (document.readyState == “complete”) {
try{
intervalProcess = setInterval(“checkFlashLoaded()”, 500);
clearInterval(start);
}catch(err){return true;}
}
}
function checkFlashLoaded(){
if(document.getElementById(“flash”).PercentLoaded()==100){
你的方法
clearInterval(intervalProcess);
}
}

标签:

发表评论

电子邮件地址不会被公开。 必填项已用*标注