Parse the XML sample code using jquery

  • 2020-03-30 03:54:02
  • OfStack

XML file structure :books.xml


<?xml version="1.0" encoding="UTF-8"?>
<root>
<book id="1">
<name> A simple extjs</name>
<author> Zhang SAN </author>
<price>88</price>
</book>
<book id="2">
<name> The sharp jQuery</name>
<author> Li si </author>
<price>99</price>
</book>
<book id="3">
<name> A simple flex</name>
<author> Cathy </author>
<price>108</price>
</book>
<book id="4">
<name>java Programming ideas </name>
<author> Money for seven </author>
<price>128</price>
</book>
</root>

Page code:


<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>jquery parsing xml</title>
<script type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
<script type="text/javascript">
$(function(){
$.post('books.xml',function(data){
//Find all the book nodes
var s="";
$(data).find('book').each(function(i){
var id=$(this).attr('id');
var name=$(this).children('name').text();
var author=$(this).children('author').text();
var price=$(this).children('price').text();
s+=id+"    "+name+"    "+author+"    "+price+"<br>";
});
$('#mydiv').html(s);
});
});
</script>
</head>
<body>
<div id='mydiv'></div>
</body>
</html>

Effect:


Related articles: