51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

Jquery通过Ajax访问XML数据的小例子

页面js代码
++复制代码++ 代码如下:

$.ajax({


url : '...',
type : 'POST',
dataType : 'xml',
error : function(xml) {
alert("Error loading XML document" + xml);
},
success : function(xml) {
$(xml).find("X").each(function(i) {
alert($(this).attr("Xattr"));
});
}
});

后台输出代码
++复制代码++ 代码如下:

public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {


response.setContentType("text/xml; charset=utf-8");
response.setCharacterEncoding("utf-8");

PrintWriter pw = response.getWriter();
Document doc = new Document();//获取XML文件
doc.write(pw);
return null;
}



赞(0)
未经允许不得转载:工具盒子 » Jquery通过Ajax访问XML数据的小例子