报错解决——Failed to load resource: the server responded with a status of 404 (Not Found)

时间:2025-01-21 13:40:05

在复习JavaScript过程中发现该错误,Failed to load resource: the server responded with a status of 404 (Not Found) 。

简而言之就是缺失文件。
简单来说,该文件就是收藏后显示的图标,浏览器一般自动在网站根目录寻找。

解决方案:1、做个文件放在根目录下(如上图,该文件的生成是有难度的),在head标签引入文件即可

<link href="" rel="shortcut icon">
2.简单
<link rel="shortcut icon" href="#" />

但是在重新打开以后就没有了,这个问题有待再深究