Home > Web Front-end > JS Tutorial > Example analysis of the difference between jQuery parsing XML and traditional JavaScript methods_jquery

Example analysis of the difference between jQuery parsing XML and traditional JavaScript methods_jquery

WBOY
Release: 2016-05-16 16:10:54
Original
1267 people have browsed it

The example in this article describes the difference between jQuery parsing XML and traditional JavaScript methods. Share it with everyone for your reference. The specific analysis is as follows:

1. Traditional javascript method:

var xmlDoc = request.responseXML;
try // Build Markers, if available
{
 var markers = xmlDoc.getElementsByTagName("marker") ;
 for ( var i = 0; i < markers.length ; i++ ) {
  var point = {
   markers[i].getAttribute("lat")),
   markers[i].getAttribute("lng")
  };
 }
} catch(e) {}
Copy after login

2. jQuery method:

$(request.responseXML).find("marker").each(function() {
 var marker = $(this);
 var point = {
  marker.attr("lat"),
  marker.attr("lng")
 };
});
Copy after login

I hope this article will be helpful to everyone’s jQuery programming.

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