jQuery scrollTop()没有滚动到所需的位置

时间:2014-03-01 18:58:04

标签: jquery

我有一个我创建的评论系统,我想点击一下回复按钮带你到回复框。这是我的代码:

$('.reply-button').click(function(){ 
   $('#reply-' + $(this).closest(".root-comment").attr("id")).animate({scrollTop: $(this).offset().top});
   $('#reply-' + $(this).closest(".root-comment").attr("id") + ' textarea').focus();
});

// How I get the root comment's ID
$(this).closest(".root-comment").attr("id");

知道我可能做错了吗?

很抱歉浪费每个人的时间。这是一个很快关闭的div问题。我道歉。

0 个答案:

没有答案