XML parser-parse xml files in js

Source: Internet
Author: User
1.0 relational data needs to be read in js. we prefer xml files. but how can we read them? The following is a solution ...... We usually have the following requirements::

1.0 relational data needs to be read in js. we prefer xml files. but how can we read them? The following is a solution ......

Step 1:

We can define a method: (the parser is directly returned if only someone calls it)

Function parseXML (file) {try // Internet Explorer --- the parser of IE browser is created as follows: {xmlDoc = new ActiveXObject ("Microsoft. XMLDOM ");} catch (e) {try // Firefox, Mozilla, Opera, etc. firefox and other browsers. {XmlDoc = document. implementation. createDocument ("", "", null);} catch (e) {alert (e. message); return; // if the creation is unsuccessful, return directly without going down. } XmlDoc. async = false; xmlDoc. load (file); return xmlDoc; // return the parser created and send it to the caller. }

Step 2:

Directly call the method in js to obtain the parser:

 

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.