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
WBOYOriginal
2016-05-16 16:10:541291browse

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) {}

2. jQuery method:

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

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

Statement:
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