JavaScript to obtain the number of child nodes of a node in XML

Source: Internet
Author: User

A. xml:
CopyCode The Code is as follows: <? XML version = "1.0" encoding = "gb2312"?>
<Pnode>
<Node xmlid = "0"/>
<Node xmlid = "1"/>
<Node xmlid = "2"/>
<Node xmlid = "3"/>
<Node xmlid = "4"/>
</Pnode>

Javascript: Copy code The Code is as follows: <script language = "JavaScript" type = "text/JavaScript">
// Load the XML document
Function loadxml (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;
}
// First, judge the XML Object
Function checkxmldocobj (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! ');
Return false;
}
Return xmldoc;
}
VaR xmldoc = checkxmldocobj ("A. xml ");
// If (window. activexobject) xmldoc. removechild (xmldoc. childnodes [0]);
VaR topm = xmldoc. getelementsbytagname ("node1") [0]. childnodes;
Alert (topm. Length );
</SCRIPT>

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.