本地html文件插入JS调用代码,无法显示,如何解决

发布网友 发布时间:2022-04-20 11:44

我来回答

6个回答

热心网友 时间:2023-09-26 18:35

路径有问题
应该是src="ad/script/index.js"
ad文件夹和index.html位于同一个文件夹里,就是你这里的html文件夹
加了../就表示ad文件夹在index.html上一层文件夹了

热心网友 时间:2023-09-26 18:35

你直接在html里面插入调用js文件的代码,写清楚js文件的目录位置,就可以调用了追问路径写了可是不行,不知道是不是我写的路径错了,我写的路径是src="../ad/script/index.js"

追答路径没有问题,但是建议用绝对路径吧,就是前面加上www.****.com/ad/script/index.js
然后检查一下你的js调用代码有没有问题。应该就差不多了

热心网友 时间:2023-09-26 18:36

src="./ad/script/index.js"
应该是这个地址

热心网友 时间:2023-09-26 18:36

<script src="../ad/script/index.js" type="text/javascript"></script>
出错请检查js代码是否有误。

检查index.js文件编码格式是否与index.html编码格式相同。
(用一些高级文字处理工具可以转换编码格式,如notepad2)

热心网友 时间:2023-09-26 18:37

<script type="text/javascript" src="ad/script/index.js"></script>

热心网友 时间:2023-09-26 18:38

在script标签里加上src="../ad/script/index.js"
声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。
E-MAIL:11247931@qq.com