最简单的方法是
var ajaxTime= newDate().getTime();在Ajax调用之前添加,并在
done获取当前时间中计算Ajax调用花费的时间。
var ajaxTime= new Date().getTime();$.ajax({ type: "POST", url: "some.php",}).done(function () { var totalTime = new Date().getTime()-ajaxTime; // Here I want to get the how long it took to load some.php and use it further});
或者,如果您想知道服务器端需要花费多长时间。进行同样的 *** 作,并在some.php的返回值中打印时间。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)