js 读取xml文件

读取xml文件 [原创 2007-6-20 17:35:37]   
js 读取xml文件 字号:  

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文件

上一篇:基于centos7.9安装FastDFS分布式文件系统


下一篇:Jquery 方式获取 iframe Dom元素