Tag: 跨域策略

XMLHttpRequest原始空值不允许Access-Control-Allow-Origin用于file:///到file:///(无服务器)

我试图创build一个网站,可以通过启动其索引文件在本地下载和运行。 所有文件都是本地的,没有资源在线使用。 当我尝试使用jQuery的AJAXSLT插件来处理带有XSL模板的XML文件(在子目录中)时,我收到以下错误: XMLHttpRequest cannot load file:///C:/path/to/XSL%20Website/data/home.xml. Origin null is not allowed by Access-Control-Allow-Origin. XMLHttpRequest cannot load file:///C:/path/to/XSL%20Website/assets/xsl/main.xsl. Origin null is not allowed by Access-Control-Allow-Origin. 发出请求的索引文件是file:///C:/path/to/XSL%20Website/index.html而使用的JavaScript文件存储在file:///C:/path/to/XSL%20Website/assets/js/ 。 我该如何解决这个问题?