1
我試圖在單擊元素的父級內找到類.post-info .toggle-info。現在,頁面上的所有.post-info都會切換。我試圖得到只有一個.post-info切換它的父容器,.post。在單擊元素的父級中查找一個類
<div class="post">
<div class="toggle-info">Toggle Btn</div>
<div class="post-info">
<p>Toggle this content</p>
</div>
</div>
$(".toggle-info").click(function() {
$(".post-info").animate({
height: "toggle",
opacity:"toggle"
}, 520, 'swing');
});
在此先感謝您的幫助!
太棒了,非常感謝你的快速幫助的朋友! – pbal 2012-01-14 22:59:32