Processing Summary After JQuery ajax acquires data (html, xml, json) _ jquery

Source: Internet
Author: User
The simplest of the three data formats is the html format, which can be directly used after return. The preceding processing method is the json Processing Method of xml. 1. html processing is relatively simple and can be output directly.
$ ("Jb51p"). innerHTML, etc.

2. json format data calling

The Code is as follows:


$. Ajax ({
Url: "/trundle/RawContentAction. getAjaxContent. act ",
Data: "param1 = 22 ",
DataType: "json", // The dataType here is the returned data format in html, xml, json
Cache: false, // set whether to cache. The default value is true. If you need to perform database operations for each refresh, set it to false.
Success: function (data ){
$ (Data). each (function (te, u ){
Alert (te );
$ ("# Content"). append (u. title +"
");
})
}
})


3. xml format data calling

The Code is as follows:


$. Ajax ({
Url: "/trundle/RawContentAction. getAjaxContent. act ",
Data: "param1 = 22 ",
DataType: "xml", // The dataType here is the returned data format in html, xml, json
Cache: false, // set whether to cache. The default value is true. If you need to perform database operations for each refresh, set it to false.
Success: function (xml ){
$ (Xml). find ("*"). each (function (){
// Process the retrieved content. jquery can use xpath for traversal.
})
}
})

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.