JQuery-$(xmlObject).xml 在 Mozilla 中不起作用,但在 Internet Explorer 中起作用

发布于 2024-09-08 19:23:59 字数 563 浏览 3 评论 0原文


考虑以下代码片段:

function parseXml(xml)
{    
    xmlObject= xml;     
    alert(xmlObject.xml);
}
function close(errroMsg)
{
 //Displayed Error Message
}

$(document).ready(function()
{
  $.ajax(
            {
                type: "POST",              
                url: "ServiceProvider.aspx",
                dataType: "xml",
                success: parseXml,
                failure: close   
            }
       );
});

在 IE-8 中,alert(xmlObject.xml) 显示 xml 字符串。 但在 Mozilla 中它显示未定义。 我正在使用jquery-1.4.2 我无法找出错误。 提前致谢。



Consider the following snippet of code:

function parseXml(xml)
{    
    xmlObject= xml;     
    alert(xmlObject.xml);
}
function close(errroMsg)
{
 //Displayed Error Message
}

$(document).ready(function()
{
  $.ajax(
            {
                type: "POST",              
                url: "ServiceProvider.aspx",
                dataType: "xml",
                success: parseXml,
                failure: close   
            }
       );
});

In IE-8 the alert(xmlObject.xml) disaplays xml string.
but in Mozilla it displays undefined.
I am using jquery-1.4.2
I was unable to figure out the error.
Thanks in Advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偷得浮生 2024-09-15 19:23:59

IE 对 XML 文档的实现与其他浏览器略有不同,差异之一是 IE 中有文档的 xml 属性。

如果要在所有浏览器中将 XML 序列化为字符串,可以使用以下命令:

function serializeXmlDoc(xmlDoc) {
    if (window.XMLSerializer) {
        return (new window.XMLSerializer()).serializeToString(xmlDoc);
    } else if (typeof xmlDoc.xml != "undefined") {
        return xmlDoc.xml;
    }
}

IE has a slightly different implementation of XML documents from other browsers, one of the differences being that in IE there is an xml property of the document.

If you want to serialize the XML into a string in all browsers, you can use the following:

function serializeXmlDoc(xmlDoc) {
    if (window.XMLSerializer) {
        return (new window.XMLSerializer()).serializeToString(xmlDoc);
    } else if (typeof xmlDoc.xml != "undefined") {
        return xmlDoc.xml;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文