加载外部 XML 文件进行解析
setTimeout("newAJAXCommand('http://powercont.dyndns.org:1011/status.xml', updateStatus, true)",1000);
这似乎没有做任何事情,有没有办法通过从脚本运行的不同服务器中提取 xml 文件来完成这项工作。
我见过有一种方法可以将外部 xml 文件加载到本地 xml 文件中吗?
setTimeout("newAJAXCommand('http://powercont.dyndns.org:1011/status.xml', updateStatus, true)",1000);
this doesn't seem to do anything, is there a way of making this work by pulling the xml file from a different server from where the script is running.
i've seen theres a way of loading an external xml file into a local xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法通过 JavaScript 请求另一个域的页面。
http://en.wikipedia.org/wiki/Same_origin_policy
You can't request another domain's page via JavaScript.
http://en.wikipedia.org/wiki/Same_origin_policy