我使用 httpwebrequest 检查 c# 中网站的响应时间,并使用秒表测量时间。如何使用 javascript 进行 webrequest 和秒表检查时间的好方法?
这是我的 c# 示例。
Uri URL = new Uri("http://www.example.com");
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL);
request.Timeout = 10000;
Stopwatch stopWatch = new Stopwatch();
stopWatch.Start();
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
response.Close();
stopWatch.Stop();
int ms = stopWatch.Elapsed.Milliseconds;