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.