1
我有以下幾點:查找特定類的下一個元素父裏面jQuery的
<div class="container">
Test 1
<div class="child">Testing</div>
</div>
<div class="container">
Test 2
<div class="child">Testing</div>
</div>
<div class="container">
Test 3
<div class="child">Testing</div>
</div>
我希望有孩子的div容器內部多數民衆贊成在上空盤旋,以顯示和隱藏,當鼠標離開容器。
我目前做的有:
$('.container').hover(
function() {
$(this).next('.child').show();
},
function() {
$(this).next('.child').hide();
}
);
但似乎工作不。 任何建議表示感謝,謝謝。