Js cross-browser xml operations

Source: Internet
Author: User
Tags parse error

function parseXml(xml){    var xmldom = null;    if(typeof DOMParser!="undefined"){       xmldom = (new DOMParser()).parseFromString(xml,"text/xml");       var errors = xmldom.getElementsByTagName("parsererror");       if(errors.length){            throw new Error("XML parse error:"+errors[0].textContent);    }else if(typeof ActiveXObject!="undefined"){        xmldom = createDocument();        xmldom.loadXML(xml);        if(xmldom.parseError!=0){            throw new Error("XML parse error:"+xmldom.parseError.reason);        }    }else{        throw new Error("No XML parser available.");    }    return xmldom;}


Note:

When using the above functions, you should capture exceptions.

As follows:

var xmldom = null;try{  xmldom = parseXml("
 
  
 ");}catch(ex){  alert(ex.message);}


Serialize XML

function serializeXml(xmldom){  if(typeof XMLSerializer!="undefined"){     return (new XMLSerializer()).serializeToString(xmldom);  }else if(typeof xmldom.xml!="undefined"){     return xmldom.xml;  }else{     throw new Error("Could not serialize XML DOM.");  }}


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.