• 博客园logo
  • 会员
  • 周边
  • 新闻
  • 博问
  • 闪存
  • 众包
  • 赞助商
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
雪飞夏日
博客园    首页    新随笔    联系   管理    订阅  订阅
jQuery 操作XML入门
JQuery入门级代码

jqXmlFirst.aspx  文件的代码如下:

Code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="jqXmlFirst.aspx.cs" Inherits="jqueryXml_jqXmlFirst" %> 
<!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>jQuery操作Xml入门</title> 
<script type="text/javascript" src="../js/jquery-1.2.6.js"></script> 
<script type="text/javascript"> 
$(function(){ 
$.ajax({ 
url:
"XMLFile.xml", 
dataType:
"xml", 
error: function(xml){ 
alert(
'Error loading XML document'+xml); 
}, 
success:function(xml){ 
$(xml).find(
"msglist > msg").each(function(){ 
alert($(
this).find("content").text());//each是循环执行,即多次弹出。 
alert($(this).attr("name"));//取得属性的方法 
}); 
} 
}) 
}); 
</script> 
</head> 
<body> 
<form id="form1" runat="server"> 
<div> 
</div> 
</form> 
</body> 
</html>

XMLFile.xml 文件的代码如下:

Code

<?xml version="1.0" encoding="utf-8" ?> 
<msglist> 
<msg name="11"> 
<id>1</id> 
<content>content1</content> 
</msg> 
<msg name="22"> 
<id>2</id> 
<content>content2</content> 
</msg> 
</msglist> 

 

posted on 2009-07-28 18:11  雪飞夏日  阅读(287)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3