Home > Article > Web Front-end > How to cancel ajax request with jQuery
This time I will bring you jQueryHow to cancel ajax request, what are the precautions for jQuery to cancel ajax request, the following is a practical case, let's take a look.
It should be noted here that you can use xhr.abort() to cancel the ajax request before it responds, but if the request has already reached the server, the result of doing so is just to stop the browser from monitoring the request. response, but the server will still process it
var xhr = $.ajax({ type: "POST", url: "test.php", data: "name=test", success: function(msg){ alert( msg ); } }); //取消请求 xhr.abort()
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
Detailed explanation of JS implementation of Ajax method
jQuery Ajax analysis collection
The above is the detailed content of How to cancel ajax request with jQuery. For more information, please follow other related articles on the PHP Chinese website!