我什至不确定这是否可能,但让我们试一试。
我为每个图像动态生成了这个 HTML:
<a href="image.jpg" class="thickbox">
<img src="thumb.jpg" title="This is the title" alt="" />
</a>
不知何故,我需要从 thumb.jpg 中获取 title 属性并将其复制到周围的锚点,这将产生以下结果:
<a href="image.jpg" class="thickbox" title="This is the title" alt="">
<img src="thumb.jpg" title="This is the title" alt="" />
</a>
如果这可以用 jQuery 实现,我会很高兴。
提前致谢。