JQuery-$(xmlObject).xml 在 Mozilla 中不起作用,但在 Internet Explorer 中起作用
考虑以下代码片段:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 对 XML 文档的实现与其他浏览器略有不同,差异之一是 IE 中有文档的
xml
属性。如果要在所有浏览器中将 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: