當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > 編程其他 > 利用JS代碼檢測站點(diǎn)的鏈接速度

利用JS代碼檢測站點(diǎn)的鏈接速度

2012/10/29 15:59:40作者:佚名來源:網(wǎng)絡(luò)

移動端

【實(shí)例名稱】

利用JS代碼檢測站點(diǎn)的鏈接速度

【實(shí)例描述】

判斷一個(gè)站點(diǎn)的好壞,界面和速度都是關(guān)鍵因素。本例學(xué)習(xí)如何測試一個(gè)網(wǎng)站的鏈接速度。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>標(biāo)題頁-學(xué)無憂(wangbatian.cn)</title> </head> <body> <script> indexArr=0                      //連接網(wǎng)站的時(shí)間 setInterval("indexArr++",100)   //設(shè)置循環(huán)的定時(shí)器 b=1 var autourl=new Array()         //設(shè)置一個(gè)鏈接數(shù)組 autourl[1]="mail.163.com" autourl[2]="www.263.net" autourl[3]="www.sina.com.cn" autourl[4]="www.baidu.com" autourl[5]="www.cctv.com"

function writeBtn(){     document.write("<form name=autof>") //輸出一個(gè)提交窗體     for(var i=1;i<autourl.length;i++)     document.write("<input type=text name=txt"+i+" size=12 value=測試中……> =》<input type=text name=url"+i+" size=40> =》<input type=button value=GO onclick=window.open(this.form.url"+i+".value)><br>")     document.write("<input type=submit value=刷新></form>") //輸出一個(gè)提交按鈕 } writeBtn() function auto(url){     document.forms[0]["url"+b].value=url     if(indexArr>200)     {document.forms[0]["txt"+b].value="鏈接超時(shí)"}               //如果超時(shí),則提示此信息     else     {document.forms[0]["txt"+b].value="時(shí)間"+indexArr/100+"毫秒"}  //顯示鏈接站點(diǎn)的時(shí)間     b++ } function run(){     for(var i=1;i<autourl.length;i++)                           //循環(huán)測試鏈接站點(diǎn)的時(shí)間     document.write("<img src=http://"+autourl[i]+"/"+Math.random() +" width=1 height=1 onerror=auto('http://"+autourl[i]+"')>") } run() </script> </body> </html>

【運(yùn)行效果】

運(yùn)行效果

【難點(diǎn)剖析】

本例的目的是測試網(wǎng)站的鏈接速度,其中使用了一個(gè)定時(shí)器,每隔100毫秒計(jì)時(shí)一次(“indexArr’’變量自增),當(dāng)站點(diǎn)連接完畢后,獲取“indexArr”變量的值再除以100,便是連接站點(diǎn)需要的毫秒值。

【源碼下載】

如果你不愿復(fù)制代碼及提高代碼準(zhǔn)確性,你可以點(diǎn)擊:檢測站點(diǎn)的鏈接速度 進(jìn)行本實(shí)例源碼下載 

標(biāo)簽: JS代碼  鏈接