我有問題選擇div我想要在jQuery中動畫。我有這個HTMLjquery選擇器
<div id="perimg">
<a class="false" href="show_model.php?param=Addison">
<div id="name_container"><img id="slide" src="../../pictures/picture.jpg"><div id="name">Picture name</div></div>
</a>
</div>
我使用該標記,因爲我想滑動懸停上的圖片的#名稱。我有每行3行和8行,我的jQuery只針對第一個圖像。
$('#slide').hover(function(){
$(this).parent().find('#name').animate({"bottom" : 0}, 800)
}, function(){
$(this).parent().find('#name').animate({"bottom" : "-20px"}, 800)
});
我甚至試過去$('#perimg')。children(),但這也沒有幫助。
ID必須在文檔中是唯一的。如果你有多個具有相同ID的元素,那麼這可能不起作用。 – Gumbo 2010-07-05 07:17:43
嗯,我明白了。讓我再試一次 – andrei 2010-07-05 07:18:40