有人可以解释一下为什么要替换以下内容
$('.post_title a').hover(function () {
$(this).parent().parent().parent().parent().find(".post_footer").toggleClass('footer_border')
});
和
$('.post_title a').hover(function () {
$(this).closest(".post_footer").toggleClass('footer_border')
});
不工作??