我像这样使用灯箱:
$('#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 中的每个链接 ()。我希望它只影响拇指类,而不是标题类。我怎样才能做到这一点?
我对 Javascript 很陌生:/