我正在使用Lightbox:
$('#gallery a').lightBox();
html看起来像这样:
<div id="gallery">
<div class='holder'>
<div class='thumb'>
<a href='images/all-tomorrows-parties.jpg'>
<img src='images/thumbs/all-tomorrows-parties-t.jpg' width='140' height='120' /></a>
</div>
<div class='title'>
<h3>
<a href="http://www.amazon.com/">
All Tomorrow's Parties<br />
William Gibson
</a>
</h3>
</div>
</div>
因此,javascript会影响.gallery div中的每个link()。我希望它只影响拇指类,而不是标题类。我怎么能这样做?
我是Javascript的新手:/
答案 0 :(得分:3)
只需将该类添加到您的选择器:
$('#gallery .thumb a').lightBox();