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

 更新时间:2013年11月18日 15:38:11   作者:  
这篇文章主要介绍了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;
}

相关文章

最新评论