jQuery教程

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

本文主要是介绍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;
}

这篇关于Jquery通过Ajax访问XML数据的小例子的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!