在html页面中破碎的图像

时间:2013-09-02 04:12:54

标签: html struts imagesource

美好的一天,

我正在使用Struts2框架进行Java。以下是我的HTML代码:

<html:image alt="Calendar" src="/images/icon_calendar.gif" />
<img alt="Calendar" src="/images/icon_calendar.gif" />

我的图片的第一行工作正常,图片在我的网页中正确显示。 ()

然而,我的html的第二行无效。它在我的网页中显示损坏的图像。 ()

想问一下,我的代码中有什么错误。

请告知。

1 个答案:

答案 0 :(得分:0)

美好的一天,

一旦发布此问题,问题就解决了。

我试图解决它几天。

正确的代码应如下:

<html:image alt="Calendar" src="/images/icon_calendar.gif" />
<img alt="Calendar" src="images/icon_calendar.gif" />