gpt4 book ai didi

jQuery XML 解析(使用 Ajax)在 Chrome 中不起作用(但在 IE、FF、Opera、Safari 中起作用)

转载 作者:行者123 更新时间:2023-12-01 05:08:27 24 4
gpt4 key购买 nike

我正在使用 jQuery.ajax 从文件中解析一些 xml。在 IE (6,7,8)、Firefox、Opera 和 Safari 中一切正常,但在 Google Chrome 中则失败。这是代码:

/* ... */
this.loadXml = function()
{
$.ajax(
{
type: "GET",
url: "some_file.xml",
dataType: ($.browser.msie) ? "text" : "xml",
success: function(xml)
{
if($.browser.msie)
{
var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
xmlDoc.loadXML(xml);
xml = xmlDoc;
}

/* parsing starts here */
/* for example: in the document I have a div tag with id "some text" and the xml file contains: <root><tag>test</tag></root>*/

$("#some_id").text($(xml).find("root > tag").text());

/* parsing ends here */

}
});
}

最佳答案

Chrome 不会让你访问这样的本地文件。这是一个(有点争议的)安全问题。您可以从命令行启动 chrome,并使用一个标志来强制它允许访问:

google-chrome --allow-file-access-from-files

(再次感谢 @Nick Craver,他是知识渊博的人。)

编辑 - 这是我问的问题:Accessing relative URL's via "ajax" from "file://" content

关于jQuery XML 解析(使用 Ajax)在 Chrome 中不起作用(但在 IE、FF、Opera、Safari 中起作用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3701277/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com