0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="Scripts/jquery-1.7.2.min.js" type="text/javascript"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function(){
    $("#dvContent").append("<div></div>");
    $.ajax({
        type: "GET",
        url: "products.xml",
        dataType: "xml",
        success: function(xml){
            $(xml).find('product').each(function(){
            var sModel = $(this).find('model').text();
            var sName = $(this).find('name').text();
            var sDescription = $(this).find('description').text();
            var sImage = $(this).find('image').text();
            var sPrice = $(this).find('price').text();
            var sSpecial = $(this).find('specialPrice').text();
            $("<li></li>").html(sModel + ", " + sName + ", " + sDescription + ", " + sImage + ", " + sPrice + ", " + sSpecial ).appendTo("#dvContent div");
        });
        },
        error: function() {
        alert("An error occurred while processing XML file.");
        }
    });
  });    
 </script>
</head>
<body>
<form id="form1" runat="server">
<div id="dvContent">

</div>
</form>
</body>
</html>

这是我为解析 xml 文件并将其显示在 html 页面中而编写的完整代码。为了移动应用程序,我正在解析它。我正在使用phonegap,但我面临的问题是由于使用常规jquery,我遇到了很多错误。那么有人可以帮助我解决文件中必须进行的所有更改以使其在phonegap中正常工作吗?

4

0 回答 0