我正在尝试创建一个可通过启动其索引文件下载并在本地运行的网站。
所有文件都是本地文件,没有资源在线使用。
当我尝试使用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/
。
如何解决此问题?