我知道一个jquery插件支持字幕中的链接是NIVO滑块。基本上我所拥有的是一个jquery插件,它使用图像的alt属性将其显示为标题。我想知道在alt属性中引用DIV并让它显示DIV是多么困难。
这是jquery:
$('.thumb_container').click(function(){
var handler = $(this).find('.large_image');
var newsrc = handler.attr('src');
var newcaption = handler.attr("alt");
loadPhoto(newsrc, newcaption);
});
所以我想要的是图像的alt属性来引用DIV(即alt =“#example”),而DIV中的链接将显示为标题。有没有简单的方法来做到这一点?我上面的内容有效,但标题显示#example不是#example DIV中的内容。
答案 0 :(得分:1)
试试这个:
$('.thumb_container').click(function(){
var handler = $(this).find('.large_image');
var newsrc = handler.attr('src');
var newcaption = $(handler.attr("alt")).html();
loadPhoto(newsrc, newcaption);
});
专注于handler.attr(“alt”)
周围的jquery选择器