0

如何在 Lightbox 的图片下方放置图片描述?

我使用这个灯箱插件: http: //leandrovieira.com/projects/jquery/lightbox/

4

2 回答 2

1

描述取自 a 标签的 title 属性。喜欢

<a href="image.jpg" title="Example image">
      <img src="thumb_image.jpg">
</a>

所以你的描述将是Example image

于 2012-10-10T15:30:25.130 回答
0

您必须像这样设置标题栏:

<a href="img.jpg" title="enter a title here">
    <img src="thumb_img.jpg" alt="no image title here" />
</a>

这将完全通过 W3 认证。alt = 图像的替代文本。

于 2012-10-10T15:34:19.133 回答