URLを順番に1つのiframeに入れるスクリプトを入手しました。
<script type="text/javascript">
$(document).ready(function(){
var array = ['http://www.example1.come', 'http://www.example2.com', 'http://www.example3.com'];
var beforeLoad = (new Date()).getTime();
var loadTimes = [];
$('#1').on('load', function() {
loadTimes.push((new Date()).getTime());
$('#1').attr('src', array.pop());
if (array.length === 0) {
$.each(loadTimes, function(index, value) {
$("#loadingtime"+index).html(value - beforeLoad);
});
}
}).attr('src', array.pop());
});
</script>
URLのリストを含むtxtファイルを取得しました。そのファイルのURLは1列に書き込まれます(1列、各URLは改行から始まります)。javascriptの「vararray」をそのtxtファイルのコンテンツに置き換えるにはどうすればよいですか?