我有两台服务器在端口80上运行一台服务器,另一台在端口8080上运行。
在端口80服务器上的html文件(demo_audio_video_simple.html)中,我有以下两行代码:
<script type="text/javascript" src="js/test.js"></script>
<script type="text/javascript" src="http://localhost:8080/test.js"></script>
我的test.js文件是:
console.log("inside test.js");
当我运行这两个程序并转到demo_audio_video_simple.html时,我会在浏览器的控制台中看到它:
inside test.js test.js:1:1
Loading failed for the <script> with source “http://localhost:8080/test.js”.
脚本在端口80上运行的程序中找到文件就好了,但是在端口8080上运行的程序中找不到它。我把test.js文件放在我能想到的每个可以想到的地方。端口8080程序,结果相同。
我一定是做错了。