我可能错过了令人眼花缭乱的明显但我无法弄清楚为什么我的网站上没有显示图像。这是HTML:
<p>Above the image</p>
<img src="/Trends/TDBFGLogo5.gif" alt="" />
<p>Below the image</p>
我的代码在目录D:\ WebApp中执行,其中包含一个名为Trends的文件夹,其中包含我的所有图像。我甚至尝试过绝对路径D:/WebApp/Trends/TDBFGLogo5.gif,但我看到的只有:
Above the image
Below the image
我没有影响img标签的CSS,而且这个标签位于HTML的主体中。
感谢任何建议。
问候。
答案 0 :(得分:2)
<p>Above the image</p>
<img src="Trends/TDBFGLogo5.gif" alt="" />
<p>Below the image</p>
答案 1 :(得分:0)
尝试这样
<p>Above the image</p>
<img src="./Trends/TDBFGLogo5.gif" alt="" />
<p>Below the image</p>