iframe加載順序


var urls_to_load = ["http://url.com","http://url2.com","http://url3.com","http://url4.com"]; var i = 0; function loadIframeAndcheckIfReady(){ var current_url = urls_to_load[i]; alert(i); frame = document.createElement('iframe'); document.body.appendChild(frame); frame.setAttribute('src',current_url); var inter = window.setInterval(function() { if (frame.contentWindow.document.readyState === "complete") { window.clearInterval(inter); i++; //Now we have one url more... if(i < urls_to_load.length)loadIframeAndcheckIfReady(); //recursively call the function until i it's iqual to urls_to_load.length } }, 100); } loadIframeAndcheckIfReady(); //Start process


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM