Posted in Javascript onNovember 18, 2013
页面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数据的小例子
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@