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