在jQuery中将xml转换为字符串

时间:2019-06-11 12:18:48

标签: javascript jquery

有一个包含XML标签的变量 如何在HTML页面上将此变量显示在表的一行中,并使用jquery作为字符串

2 个答案:

答案 0 :(得分:0)

**我在Stackoverflow上找到了这个。请尝试是否有帮助-:)**

<script type='text/javascript'>

function xmlToString(xmlData) { 

    var xmlString;
    //IE
    if (window.ActiveXObject){
        xmlString = xmlData.xml;
    }
    // code for Mozilla, Firefox, Opera, etc.
    else{
        xmlString = (new XMLSerializer()).serializeToString(xmlData);
    }
    return xmlString;
}   

</script>

答案 1 :(得分:0)

最佳解决方案:

function displayXml(str){     var htmlString = String(str).replace(/&/ g,'&')。replace(// g,'>')。replace(/“ / g,'”');     返回htmlString;

}