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