如何在另一个文件夹中的html中引用javascript文件

时间:2018-03-11 17:03:07

标签: javascript html web

我在文件夹中有一个JS文件 /admintool/src/main/webapp/static/js/itemInventory.js

我在文件夹中有html文件 /admintool/src/main/webapp/WEB-INF/templates/itemInventory.ms

在页面上加载我的url开头 - http://localhost:8080/admintool/selectItem/showAllItems

在itemInventory.ms文件中,当我使用下面的代码来引用javascript时,它无法检测到它。

<script src="static/js/itemInventory.js"></script>

在浏览器控制台中,我收到错误消息 获取http://localhost:8080/admintool/selectItem/static/js/itemInventory.js net :: ERR_ABORTED

如何正确指定此JS文件的位置?

1 个答案:

答案 0 :(得分:0)

你确定,链接是对的吗?从HTML到JavaScript的链接必须是: ../../静态/ JS / itemInventory.js

伊沃