jquery Loading XML code
In the jquery version of I do not say, there are two ways, compatibility she has been for you to consider, and call a particularly simple specific example to see the photography section, those pictures are loaded from the imgdata.xml. In fact, Flickr has a perfect and powerful API mechanism, But I haven't figured it out yet. Try to generate a JSON file directly to read the corresponding image data, which is more convenient
$.ajax ({
This is omnipotent, not only can read XML
URL: ' i.xml ',//xml document Path
Type: ' Get ',//Request method
DataType: ' xml ',//document type
timeout:1000,//Super Long
cache:false,//whether to cache
Error:function () {alert (' oh,oh,error!haha! ');},//This is a message that throws a load failure, it's smarter than JS.
Success:function (XML) {
Alert (' yeah! success! '); /perform operations on the contents of the XML document here
}
});
A more concise approach
$.get (' I.xml ', function (XML) {
Alert (' yeah! success! '); /perform operations on the contents of the XML document here
});