jQuery基于Ajax实现读取XML数据功能示例
作者:踏踏实实干
这篇文章主要介绍了jQuery基于Ajax实现读取XML数据功能,结合实例形式分析了jQuery基于ajax的get方式获取xml文件数据并输出显示相关操作技巧,需要的朋友可以参考下
本文实例讲述了jQuery基于Ajax实现读取XML数据功能。分享给大家供大家参考,具体如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="JqueryAjax_Default" %> <!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 runat="server"> <title>www.jb51.net jQuery使用ajax获取xml</title> <style type="text/css"> </style> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#Display").click(function () { $("#message").html(''); $.ajax({ type: "GET", url: "Friend.xml", dataType: "xml", success: function (ResponseText) { var table = "<table border='1px'><tr><td>firstname</td><td>lastname</td><td>city</td></tr>"; $(ResponseText).find('friend').each(function () { var first = $(this).find('firstName').text(); var last = $(this).find('lastName').text(); var city = $(this).find('city').text(); table += "<tr><td>" + first + "</td><td>" + last + "</td><td>" + city + "</td></tr>"; }) table += "</table>"; $("#message").append(table); } }); }); }); </script> </head> <body> <form id="form1" runat="server"> <label>Display My Friends</label><br /> <input type="button" value="Display" id="Display" /> <div id="message"></div> </form> </body> </html>
Friend.xml:
<?xml version="1.0" encoding="utf-8" ?> <friends> <friend> <name> <firstName>Guo</firstName> <lastName>Hu</lastName> </name> <address> <province>Shanghai</province> <city>PuDong</city> </address> </friend> <friend> <name> <firstName>Lei</firstName> <lastName>Hu</lastName> </name> <address> <province>hubei</province> <city>xiantao</city> </address> </friend> <friend> <name> <firstName>JunWen</firstName> <lastName>Li</lastName> </name> <address> <province>hubei</province> <city>wuhan</city> </address> </friend> <friend> <name> <firstName>Jinhao</firstName> <lastName>Liu</lastName> </name> <address> <province>ShanXi</province> <city>Taiyuan</city> </address> </friend> <friend> <name> <firstName>Cheng</firstName> <lastName>Fang</lastName> </name> <address> <province>GuangDong</province> <city>GuangZhou</city> </address> </friend> </friends>
运行结果:
PS:这里再为大家提供几款关于xml操作相关在线工具供大家参考使用:
在线XML/JSON互相转换工具:
http://tools.jb51.net/code/xmljson
在线格式化XML/在线压缩XML:
http://tools.jb51.net/code/xmlformat
XML在线压缩/格式化工具:
http://tools.jb51.net/code/xml_format_compress
xml代码在线格式化美化工具:
http://tools.jb51.net/code/xmlcodeformat
更多关于jQuery相关内容感兴趣的读者可查看本站专题:《jQuery操作xml技巧总结》、《jquery中Ajax用法总结》、《jQuery扩展技巧总结》、《jQuery常用插件及用法总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
您可能感兴趣的文章:
- JQuery的ajax获取数据后的处理总结(html,xml,json)
- Jquery Ajax学习实例 向页面发出请求,返回XML格式数据
- jQuery+ajax读取并解析XML文件的方法
- JavaScript原生xmlHttp与jquery的ajax方法json数据格式实例
- 通过AJAX的JS、JQuery两种方式解析XML示例介绍
- 用JQuery 实现AJAX加载XML并解析的脚本
- jQuery 利用$.ajax 时获取原生XMLHttpRequest 对象的方法
- JQuery Ajax通过Handler访问外部XML数据的代码
- Jquery Ajax解析XML数据(同步及异步调用)简单实例
- Jquery通过Ajax访问XML数据的小例子