好吧,这到底是怎么回事?
xmlhttp.open("POST", "../Module1/page1.html", true);
xmlhttp.send(null);
抛出 NS_ERROR_DOM_BAD_URI: Access to restricted URI denied 当我尝试加载页面时,一切都在本地运行,使用 Firefox 24。
当它在线使用时,我也不能使用任何后端服务器语言,因此没有 PHP 或 ASP 解决方案可以工作。万岁 LMS SCORM 内容。:U
现在我可以很好地做到这一点:
xmlhttp.open("POST", "page1.html", true);
xmlhttp.send(null);
只是它不会让我在另一个目录中加载页面。