我有這個HTML文件,的jQuery的.next()和.closest()不工作
<strong><a href='#' class='showMore'>Show More</a></strong>
<div class='more'>This is it</div>
我想顯示鼠標div.more
超過a.showMore
。
$("a.showMore").hover(function()
{
$(this).closest('.more').show();
},function()
{
});
我仍然無法獲取MORE框顯示。 我錯過了什麼?
謝謝。
@undefined - 這可能是一個粘貼錯誤。 –