如何使用jquery将图像标题渲染到灯箱标题?

时间:2010-11-10 12:40:16

标签: jquery css xhtml

我在每张图片下都有标题

<p>
<a href="large.jpg"> 
<img width="85" height="75" src="thumb.jpg/>
</a>Caption</p>

我想在灯箱底部渲染相同的标题。

<span id="lightbox-image-details-caption">...Here.......</span>

怎么做?

alt text

1 个答案:

答案 0 :(得分:5)

通常的方法是在链接中包含title属性;

<p>
<a href="large.jpg" title="Your Caption"> 
<img width="85" height="75" src="thumb.jpg" />
</a>
</p>

此标题将在<span id="lightbox-image-details-caption"></span>中发布 这对您有用还是需要在图像之后添加文本,就像现在一样?