我在文件夹中有一个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文件的位置?
答案 0 :(得分:0)
你确定,链接是对的吗?从HTML到JavaScript的链接必须是: ../../静态/ JS / itemInventory.js
伊沃