Js + XML operations

Source: Internet
Author: User

The xml file Login. xml is as follows.
Copy codeThe Code is as follows:
<? Xml version = "1.0" encoding = "UTF-8"?>
<Login>
<Character>
<C Text = "hot blood" Value = "0"> </C>
<C Text = "weak gas" Value = "1"> </C>
<C Text = "passion" Value = "2"> </C>
<C Text = "calm" Value = "3"> </C>
<C Text = "cold" Value = "4"> </C>
</Character>
<Weapon>
<W Text = "" Value = "0"> </W>
<W Text = "" Value = "1"> </W>
</Weapon>
<EconomyProperty>
<P Text = "average" Value = "0"> </P>
<P Text = "attach importance to attack" Value = "1"> </P>
<P Text = "agile" Value = "2"> </P>
<P Text = "Pay attention to defense" Value = "3"> </P>
<P Text = "emphasis on hit" Value = "4"> </P>
</EconomyProperty>
</Login>

Now you need to operate on the content of this xml file.
First, we need to load this xml file. xml files are loaded in js through XMLDOM.
Copy codeThe Code is as follows:
// Load the xml document
LoadXML = function (xmlFile)
{
Var xmlDoc;
If (window. ActiveXObject)
{
XmlDoc = new ActiveXObject ('Microsoft. XMLDOM ');
XmlDoc. async = false;
XmlDoc. load (xmlFile );
}
Else if (document. implementation & document. implementation. createDocument)
{
XmlDoc = document. implementation. createDocument ('','', null );
XmlDoc. load (xmlFile );
}
Else
{
Return null;
}
Return xmlDoc;
}

The xml file object comes out. Next, I will operate on this document.
For example, if we need to get the attributes of the first node of the node Login/Weapon/W, we can proceed as follows.
Copy codeThe Code is as follows:
// First, judge the xml Object
CheckXMLDocObj = function (xmlFile)
{
Var xmlDoc = loadXML (xmlFile );
If (xmlDoc = null)
{
Alert ('your browser does not support reading xml files, so this page prohibits your operations. We recommend you use IE5.0 or above to solve this problem! ');
Window. location. href = '/Index. aspx ';
}

Return xmlDoc;
}

// Then obtain the attribute value of the first node of Login/Weapon/W.
Var xmlDoc = checkXMLDocObj ('/EBS/XML/Login. xml ');
Var v = xmlDoc. getElementsByTagName ('login/Weapon/W') [0]. childNodes. getAttribute ('text ')

However, the way I write in my program is like this. Of course, the way I write in the program has been applied to the actual application.
Copy codeThe Code is as follows:
InitializeSelect = function (oid, xPath)
{
Var xmlDoc = checkXMLDocObj ('/EBS/XML/Login. xml ');
Var n;
Var l;
Var e = $ (oid );
If (e! = Null)
{
N = xmlDoc. getElementsByTagName (xPath) [0]. childNodes;
L = n. length;
For (var I = 0; I <l; I ++)
{
Var option = document. createElement ('option ');
Option. value = n [I]. getAttribute ('value ');
Option. innerHTML = n [I]. getAttribute ('text ');
E. appendChild (option );
}
}
}

In the above access code, we use xmlDoc. getElementsByTagName (xPath.
You can also access it through xmldoc.doc umentElement. childNodes (1)... childNodes (0). getAttribute ('text.
Some common methods:
XmlDoc.doc umentElement. childNodes (0). nodeName, you can get the name of this node.
XmlDoc.doc umentElement. childNodes (0 ). nodeValue to obtain the value of this node. the value is in xml format like this: <a> B </B>, so we can get the value of B.
XmlDoc.doc umentElement. childNodes (0). hasChild, which can be used to determine whether a subnode exists.

In my experience, it is best to use the getElementsByTagName (xPath) method to access the node, because it can be used to locate the node directly through xPath, which will provide better performance.

Related Article

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.