码迷,mamicode.com
首页 > Web开发 > 详细

js 读取xml文件

时间:2014-06-02 08:07:54      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:des   c   class   blog   a   http   

读取xml文件 [原创 2007-6-20 17:35:37]   
bubuko.com,布布扣 字号:  

js中读取xml文件,简单的例子:

<html>
<head>
<script>
var xmlDoc=new ActiveXObject("Microsoft.XMLDOM")
xmlDoc.async="false"
xmlDoc.load("b.xml")
var nodes=xmlDoc.documentElement.childNodes;
for(var i=0;i<nodes.length;i++){
 alert(nodes[i].getAttribute("text")); 
}
</script>
</head>
</html>

----------------------------------------

b.xml文件如下:

<?xml version="1.0" encoding="GB2312"?>
 <xmlmenu>
    <menu id=‘1‘ icon=‘r_heart.gif‘ text=‘招商状态评估‘  title=‘w‘></menu>
    <menu id=‘2‘ icon=‘r_heart.gif‘ text=‘工作计划及总结‘  title=‘w‘></menu>
    <menu id=‘3‘ icon=‘r_heart.gif‘ text=‘系统维护‘ title=‘‘></menu>
    <menu id=‘4‘ icon=‘r_heart.gif‘ text=‘内部论坛‘ title=‘‘></menu>
    <menu id=‘5‘ icon=‘r_heart.gif‘ text=‘系统公告‘ title=‘‘></menu>
    </xmlmenu>

js 读取xml文件,布布扣,bubuko.com

js 读取xml文件

标签:des   c   class   blog   a   http   

原文地址:http://www.cnblogs.com/isoftware/p/3763647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!