所以我正在研究可以显示对页面的请求很长的工具。
我通过使用 jQuery Ajax (http://api.jquery.com/jQuery.ajax/) 来做到这一点,我想找出获得响应时间的最佳方法。
我找到了一个线程(http://forum.jquery.com/topic/jquery-get-time-of-ajax-post),它描述了在 JavaScript 中使用“日期”,但是这种方法真的可靠吗?
我的代码示例如下
$.ajax({
type: "POST",
url: "some.php",
}).done(function () {
// Here I want to get the how long it took to load some.php and use it further
});