Home > Web Front-end > JS Tutorial > body text

Summary of processing after JQuery's ajax obtains data (html, xml, json)_jquery

WBOY
Release: 2016-05-16 18:23:13
Original
909 people have browsed it
1. HTML processing is relatively simple and can be output directly.
Generally use $("jb51div").innerHTML, etc.

2. json format data call
Copy code The code is as follows:

$.ajax({
url : "/trundle/RawContentAction.getAjaxContent.act",
data : "param1=22",
dataType : "json",//The dataType here is the returned data format html, xml, json
cache: false,//Set whether to cache, the default setting is true , if you need to perform database operations every time you refresh, you need to set it to false
success: function(data) {
$(data).each(function(te, u) {
alert(te );
$("#content").append(u.title "
");
})
}
})

3. xml format data call
Copy code The code is as follows:

$.ajax({
url : "/trundle/RawContentAction.getAjaxContent.act",
data : "param1=22",
dataType : "xml",//The dataType here is returned The data format is html, xml, json
cache: false, // Set whether to cache. The default setting is true. If you need to perform database operations every time you refresh, you need to set it to false
success: function(xml ) {
$(xml).find("*").each(function(){
//The traversed content is processed here, jquery can use xpath to traverse
})
}
})
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!