我正在运行一个 tomcat 服务器,我的 localhost 基域是:
C:/apache/webapps/ROOT/
我的网页也在这里。
但是,javascripts 存在于外部位置。
D:/something/something
我正在通过以下方式导入它们
<script src="D:/something/something/js1.js"></script>
在 IE 中,页面加载良好并且能够找到脚本,但是使用 chrome 会失败。在调试时,我看到 chrome 尝试附加以下内容:
http://localhost:8080/D:/something/something
如何在不将脚本复制到基本位置的情况下使其在 chrome 上工作?