Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use the jqXHR object of jQuery.get

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/01 Report--

This article mainly explains "how to use the jqXHR object of jQuery.get". The content of the explanation is simple and clear, and it is easy to learn and understand. Please follow the editor's train of thought to study and learn "how to use the jqXHR object of jQuery.get".

The jQuery 1.5 success callback function also passes a "jqXHR" object (in jQuery 1.4, it passes a XMLHttpRequest object). However, since the JSONP form and cross-domain GET requests do not use XHR, in these cases the jqXHR and textStatus parameters are passed to the success (successful) callback is undefined.

Most implementations will specify a successful callback handler:

$.get ('ajax/test.html', function (data) {

$('.result') .html (data)

Alert ('Load was performed.')

})

The HTML code snippet requested by this example is inserted in the page.

The jqXHR Object (jqXHR object)

Starting with jQuery 1.5, all jQuery's Ajax methods return a superset of XMLHTTPRequest objects. This jQuery XHR object, or "jqXHR," returned through the $. Get () method, implements the Promise interface so that it has all the properties, methods, and behaviors of Promise (see Deferred object for more information). The jqXHR.done () (for success), jqXHR.fail () (for error), and jqXHR.always () (for completion, success or error) methods accept a function argument to be called when the request is terminated. For more information about the parameters that this function receives, see the $.ajax () section in the jqXHR Object documentation.

The Promise interface also allows jQuery's Ajax methods, including $.get (), to be associated with .done (), .fail (), and .always () callbacks in a separate request, and even allows you to assign callbacks after the request has been completed. If the request has been completed, the callback function is called immediately.

/ / Assign handlers immediately after making the request

/ / and remember the jqxhr object for this request

Var jqxhr = $.get ("example.php", function () {

Alert ("success")

})

.success (function () {alert ("second success");})

.error (function () {alert ("error");})

.complete (function () {alert ("complete");})

/ / perform other work here...

/ / Set another completion function for the request above

Jqxhr.complete (function () {alert ("second complete");})

Thank you for reading, the above is the content of "how to use the jqXHR object of jQuery.get", after the study of this article, I believe you have a deeper understanding of how to use the jqXHR object of jQuery.get, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report