when we send any ajax request, it takes some time to complete.

Is there any way to get that time in javascript?

i have attached a screen shot to elaborate more. kindly let me know if still unclear. i need the time thatis enclosed in red enter image description here

有帮助吗?

解决方案

Take note of the time before the request and after the request. The difference will be the time taken to complete the request.

var start = new Date().getTime(),
    difference;

$.ajax({
    url: url,
    type: "POST",
    data: {
        name: "John",
        location: "Boston"
    }
}).done(function () {
    difference = new Date().getTime() - start;
});
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top