访问第二台本地服务器

时间:2018-05-04 21:54:38

标签: javascript node.js

我有两台服务器在端口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程序,结果相同。

我一定是做错了。

0 个答案:

没有答案