Javascript ping-like code

Source: Internet
Author: User
Tip: you can modify some code before running

<p><meta content="text/html; charset=gb2312" http-equiv="Content-Type" /><style type="text/css">Html {height: 100%; overflow: hidden;} body {background: #000; color: # C0C0C0; font-weight: bold; font-size: 14px; font-family: lucida Console; height: 100%; margin: 0 0 0 5px ;}# divInput {height: 10% ;}# divContent {height: 90%; overflow: auto ;}# txtTimeout {width: 40px;} button {margin-left: 10px ;}</style></p><div id="divInput">URL:<input id="txtURL" type="text" />Timeout:<input id="txtTimeout" value="2000" type="text" /> <input id="btnSwitch" type="button" onclick="handleBtnClick()" value="Start" /> <hr /></div><div id="divContent"> </div><script>var intStartTime;var objIMG = new Image();objIMG.onload =objIMG.onerror = function(){/* * 有回应,取消超时计时 */clearTimeout(intTimerID);if(!bolIsRunning || bolIsTimeout)return;var delay = new Date() - intStartTime;println("Reply from " +strURL +" time" +((delay<1)?("<1"):("="+delay)) +"ms");arrDelays.push(delay);/* * 每次请求间隔限制在1秒以上 */setTimeout(ping, delay<1000?(1000-delay):1000);}function ping(){/* * 发送请求 */intStartTime = +new Date();intSent++;objIMG.src = strURL + "/" + intStartTime;bolIsTimeout = false;/* * 超时计时 */intTimerID = setTimeout(timeout, intTimeout);}function timeout(){if(!bolIsRunning)return;bolIsTimeout = true;objIMG.src = "X:";println("Request timed out.");ping();}</script><script>var $ = function(v){return document.getElementById(v)};var arrDelays = [];var intSent;var bolIsRunning = false;var bolIsTimeout;var strURL;var intTimeout;var intTimerID;var objBtn = $("btnSwitch");var objContent = $("divContent");var objTxtURL = $("txtURL");objTxtURL.value = window.location.host;function handleBtnClick(){if(bolIsRunning){/* * 停止 */var intRecv = arrDelays.length;var intLost = intSent-intRecv;var sum = 0;for(var i=0; i<intRecv; i++)sum += arrDelays[i];objBtn.value = "Start";bolIsRunning = false;/* * 统计结果 */println(" ");println("Ping statistics for " + strURL + ":");println("  Packets: Sent = " +intSent +", Received = " +intRecv +", Lost = " +intLost +" (" +Math.floor(intLost / intSent * 100) +"% loss),");if(intRecv == 0)return;println("Approximate round trip times in milli-seconds:");println("  Minimum = " +Math.min.apply(this, arrDelays) +"ms, Maximum = " +Math.max.apply(this, arrDelays) +"ms, Average = " +Math.floor(sum/intRecv) +"ms");}else{/* * 开始 */strURL = objTxtURL.value;if(strURL.length == 0)return;if(strURL.substring(0,7).toLowerCase() != "http://")strURL = "http://" + strURL;intTimeout = parseInt($("txtTimeout").value, 10);if(isNaN(intTimeout))intTimeout = 2000;if(intTimeout < 1000)intTimeout = 1000;objBtn.value = "Stop ";bolIsRunning = true;arrDelays = [];intSent = 0;cls();println("Pinging " + strURL + ":");println(" ");ping();}}function println(str){var objDIV = document.createElement("div");if(objDIV.innerText != null)objDIV.innerText = str;elseobjDIV.textContent = str;objContent.appendChild(objDIV);objContent.scrollTop = objContent.scrollHeight;}function cls(){objContent.innerHTML = "";}</script>
Tip: you can modify some code before running

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.