4
的Javascript iframe的加載時間函數有一個很簡單的功能,用來檢查一個iframe的裝載時間:許多網址
function loadTime() {
var beforeLoad = (new Date()).getTime();
$('#loading_iframe').one('load', function() {
var afterLoad = (new Date()).getTime();
var result = (afterLoad - beforeLoad)/1000;
$("#loadingtime").html(result + " sec");
});
}
我打開了我的軀體像這樣(其中$ URL =某種聯繫)):
<iframe style="visibility:hidden;display:none" id="loading_iframe" src="<?php echo $url;?>"></iframe>
之後,我把我的結果到一個div:
<div id="loadingtime"></div>
這非常適用於一個單一的URL,我想它的工作爲一系列網址。繼承人我想要的結構(這是可能的?):
foreach ($url_array as $i)
iframe gets loaded with url
javascript that gets the loadtime of the url
passint the javascript value to php varriable
write the php varriable to a database
close foreach and begin the next loop