Javascript从本地文件解析xml
var xmlReq,
xmlDoc;
xmlReq = new XMLHttpRequest();
xmlReq.open("GET", filename, false); //synchronous GET
xmlReq.send(null);
xmlDoc = xmlReq.responseXML;
alert(xmlDoc);
我正在尝试使用上面提到的代码从本地文件系统加载 xml。变量文件名是相对路径 (../Gfx/Sprite/test_sprite.xml),在本地和从 Web 服务器运行页面时都有效。奇怪的是,我可以看到 xml 文件加载(在 safari 中使用 Web 检查器),但是 xmlReq.responseXML/xmlReq.responseText 返回 null...
我在这里做错了什么?
var xmlReq,
xmlDoc;
xmlReq = new XMLHttpRequest();
xmlReq.open("GET", filename, false); //synchronous GET
xmlReq.send(null);
xmlDoc = xmlReq.responseXML;
alert(xmlDoc);
I'm trying to use the above mentioned code to load an xml from the local filesystem. the variable filename is a relative path (../Gfx/Sprite/test_sprite.xml) and works both in local and when running the page from a web server. What makes this wierd, is that I can see that the xml file loads (using web inspector in safari), but the xmlReq.responseXML/xmlReq.responseText returns null...
What am I doing wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Webkit 不允许在本地文件系统上进行 AJAX 请求。
Webkit doesn't allow AJAX-requests on the local file-system.