2012-08-22 225 views
2

我可能錯過了這個非常明顯的但我不明白爲什麼一個圖像不顯示在我的網站上。下面是HTML:圖像不能顯示在網頁上

<p>Above the image</p> 
<img src="/Trends/TDBFGLogo5.gif" alt="" /> 
<p>Below the image</p> 

我的代碼是在目錄d執行:\ Web應用程序包含一個名爲趨勢文件夾擁有我所有的圖像。我甚至嘗試了絕對路徑d:/WebApp/Trends/TDBFGLogo5.gif但我看到的是:

Above the image 

Below the image 

我沒有CSS影響img標籤,這標籤​​是在HTML的身體。

任何意見表示讚賞。

問候。

+0

相對於其中的html代碼是圖像在哪裏? –

回答

2
<p>Above the image</p> 
<img src="Trends/TDBFGLogo5.gif" alt="" /> 
<p>Below the image</p> 
0

嘗試像這樣

<p>Above the image</p> 
<img src="./Trends/TDBFGLogo5.gif" alt="" /> 
<p>Below the image</p>