Safari 不显示“alt”图像上的文字?
<img src="image_that_may_or_may_not_load.png" alt="Show this text if image not loaded" />
如果图像未加载,Safari 似乎不会显示“替代”文本。我不确定其他浏览器的情况,但 Firefox 确实显示了替代文本。
在电子邮件模板中显示替代文本非常重要,其中图像很可能会被客户端阻止,至少在用户接受“显示来自此用户/站点的图像”之前是这样。
有什么解决方法吗?
谢谢
<img src="image_that_may_or_may_not_load.png" alt="Show this text if image not loaded" />
Safari doesn't seem to show 'alt' text in case the image is not loaded. I'm not sure about other browsers, but Firefox does show the alternate text.
Its so important to display alt text in email templates where the images would be blocked by the client most likely, atleast until the user accepts to "display images from this user/site".
Any workaround for this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实证明,设置图像的宽度和高度将在图像不可用时显示替代文本,否则不会显示。
So it turns out, setting width and height for the image will show alt text incase the image is unavailable, not otherwise.
尝试使用
title
属性。显然来自这里:Alt 文本在 IE 和 Firefox 中显示,但在 Safari 中不显示?。 Safari 不支持。
Try use the
title
attribute.<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" />
Apparently from here: Alt text showing in IE and firefox but not in safari?. Safari doesn't support it.