我有一个 jquery ajax 函数:
function posts()
{
pfunc = $.ajax({
url: 'backend/posts.php',
success: function(data) {
$('#posts').html(data);
$('#posts').fadeIn(2000);
setTimeout(posts,2000);
}
});
}
posts();
我想在用户悬停在 div 'Posts' 上时停止该功能,并在用户停止悬停在该 div 上时恢复。有什么办法我可以做到这一点。
谢谢