The order of execution of success and complete in jquery Ajax

Source: Internet
Author: User
The order of execution of success and complete in jquery Ajax

Each event in jquery is executed in the following order:

1.ajaxStart (Global event)

2.beforeSend

3.ajaxSend (Global event)

4.success

5.ajaxSuccess (Global event)

6.error

7.ajaxError (Global event)

8.complete

9.ajaxComplete (Global event)

10.ajaxStop (Global event)

Execute success first, then error, and then always complete

----------------------

The difference is---

Success: The function is called when the request succeeds, i.e. status==200;

Complete: The function is called when the request is completed, i.e. status==404, 403, 302 ... as long as there is no error.

Because normally we need to clean up resources so we design compelete to execute after success.

The order of execution of success and complete in jquery Ajax

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.