XML operations using JavaScript

Source: Internet
Author: User

Load XML
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;
}

Check whether the browser supports XML
Checkxmldoc = function (xmlfile ){
VaR xmldoc = loadxml (xmlfile );
If (xmldoc = NULL ){
Alert ('your browser does not support reading XML files. We recommend that you use ie5.0 or a later browser! ');
Window. Location. href = '/index. aspx ';
}
Return xmldoc;
}
VaR xmldoc = checkxmldoc ('/files/users. xml ');

Get node attributes
VaR name = xmldoc. selectsinglenode ("/users/user/@ name"). value;

Get the node name
Xmldoc.doc umentelement. childnodes (0). nodename

Get node Value
Xmldoc.doc umentelement. childnodes (0). nodevalue

Determine whether a subnode exists
Xmldoc.doc umentelement. childnodes (0). haschild

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.