我正在使用Fancybox插件。 (http://fancyapps.com/fancybox/)
可以选择为添加的每个“a”标记添加“标题”,并在用户打开图片时在图片下方添加标题内容。
<a class="fancybox" rel="gallery2" href="img/img.jpg" title="type here the text that should be under the image">
<img src="img/LogosC_11.png" />
</a>
有没有办法设置,所以部分标题可以点击?
attach是我需要的一个例子。
答案 0 :(得分:0)
我通过在jquery中将标题添加到<a>
来实现它。
http://jsfiddle.net/cWNw9/822/
$('a').attr('title','<a href="/">go home fancybox</a>, you\'re drunk.');
而不是将标题侵入html本身。