JS Read XML file

Source: Internet
Author: User

reading an XML file[Original 2007-6-20 17:35:37]size: big medium small

JS to read the XML file, a simple example:

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

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

The B.xml file is as follows:

<?xml version= "1.0" encoding= "GB2312"?
 <xmlmenu>
    <menu id= ' 1 ' icon= ' r_heart.gif ' text= ' investment status assessment '   title= ' W ' ></menu>
    <menu id= ' 2 ' icon= ' R_ Heart.gif ' text= ' work plan and summary '   title= ' W ' ></menu>
    <menu id= ' 3 ' icon= ' r_heart.gif ' Text= ' system maintenance ' title= ' ></menu>
    <menu id= ' 4 ' icon= ' r_heart.gif ' text= ' internal forum ' title= ' ></menu>
    <menu id= ' 5 ' icon= ' r_heart.gif ' text= ' System Bulletin ' title= ' ></menu>
    </xmlmenu>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.