Safari在图像上不显示“alt”文字?

时间:2010-06-17 05:09:05

标签: image firefox safari alt

<img src="image_that_may_or_may_not_load.png" alt="Show this text if image not loaded" />

如果未加载图片,Safari似乎不会显示“alt”文字。我不确定其他浏览器,但Firefox确实显示了备用文本。

在电子邮件模板中显示alt文本非常重要,客户最有可能阻止图像,至少在用户接受“显示来自此用户/网站的图像”之前。

对此有何解决方法?

由于

2 个答案:

答案 0 :(得分:2)

事实证明,设置图像的宽度和高度会显示替代文字,但图像不可用,否则不会。

答案 1 :(得分:1)

尝试使用title属性。

<img src="image_that_may_or_may_not_load.png" alt="Show this text if image not loaded" title="Show this text if image not loaded" />

显然从这里开始:Alt text showing in IE and firefox but not in safari?。 Safari不支持它。