HTML image net :: ERR_FILE_NOT_FOUND

时间:2016-09-20 06:33:54

标签: html css

我正在使用像这样的HTML图片

HTML:

<div class="home" style="background: #f2f2f2;">
        <div class="pr_blank"></div>
            <!-- <div id="now" class="show"> -->
        <div class="ptgamebox">

        <img src="../../images/ges.jpg" / ">
        <!-- <em class="game_ro3d"></em> -->
        <div class="game-name">test</div>
        </div>



            </div>
    </div>

我的图片位于D:\ APP \ images \ pt \ ges.jpg这样的文件夹中 enter image description here

已加载页面图片:

enter image description here

现在,当我在浏览器中看到这个图像正在加载时,但在控制台中它显示错误,如此

file:///images/ges.jpg net::ERR_FILE_NOT_FOUND

有人会帮我解决它的错误吗?

3 个答案:

答案 0 :(得分:1)

试试这个:

<img src="APP/images/pt/ges.jpg">

如果这不起作用,

像这样改变:

<img src="images/ges.jpg"> or <img src="images/pt/ges.jpg">

希望它有所帮助。

答案 1 :(得分:1)

有时此错误是由于控制字符引起的...我最近也遇到了此问题,无论我给出的路径(绝对还是相对)错误都保持不变。

最后,我通过不要复制粘贴图片的路径来解决此问题

尝试通过键盘键入图像的路径,您也可以复制和粘贴一次,通过键入相同的代码,然后删除粘贴的副本。这里有我PC上的一些屏幕截图

This is how error looks likes in console

In this image, line no. 13 path is copy pasted, in line 14 I have typed it.... then remove the line 13

Finally image start appearing in browsers

答案 2 :(得分:0)

此错误表示找不到文件。路径错误或文件不存在于您希望的位置。尝试通过在浏览器中输入源地址来检查它是否确实存在。浏览服务器上的目录以确保路径正确。您甚至可以复制并粘贴相对路径以确定它是否正常。