我在asp.net的母版页中完美地提供了JavaScript文件路径,但是在浏览器控制台中也显示了JavaScript路径中状态404的错误,即简而言之,浏览器没有获得JavaScript文件的路径。
这是我的代码
<script async="" src="index/analytics.js.download"></script>
<script type="text/javascript" src="index/modernizr.js.download"></script>
<script type="text/javascript" src="index/jquery-1.10.1.min.js.download"></script>
<script type="text/javascript" src="index/jquery.dlmenu.js.download"></script>
<script type="text/javascript" src="index/waypoints.min.js.download"></script>
<script type="text/javascript" src="index/jquery.counterup.min.js.download"></script>
<script type="text/javascript" src="index/owl.carousel.js.download"></script>
<script type="text/javascript" src="index/viewportchecker.js.download"></script>
<script type="text/javascript" src="index/bootstrap.min.js.download"></script>
<script type="text/javascript" src="index/transit.js.download"></script>
<script type="text/javascript" src="index/jquery.simpleslider.js.download"></script>
<script type="text/javascript" src="index/backstretch.js.download"></script>
<script type="text/javascript" src="index/custom.js.download"></script>
<script type="text/javascript" src="index/jquery.flexisel.js.download"></script>
<script type="text/javascript" src="index/classie.js.download"></script>
现在,所有这些JavaScript文件路径都是正确的,但后来我也很困惑,为什么浏览器控制台会显示这种类型的错误状态:
找不到404 javascript文件。
答案 0 :(得分:0)
首先,仔细检查你的js路径是否正确
如果您确定它们是正确的,请通过添加~/
使用站点根目录的相对路径 - 否则您将相对于当前页面
这可能导致了你的问题
例如:
<script async="" src="index/analytics.js.download"></script>
成为
<script async="" src="~/index/analytics.js.download"></script>
如果上述两步仍未解决您的问题,请显示exact url console is not finding
和您的actual local path of file