将滚动移动到div

时间:2013-04-15 07:22:20

标签: ajax

我有搜索公司的功能,我使用ajax进行搜索。 当ajax()函数成功时,我需要将滚动移动到div,我试试这个:

success: function(data){
$(".insid_body_web").html(data);
$(window).scrollTop($('#insid_body_web').offset().top);
$("#ResultCompany1").show();
$("#ResultCompany2").show(); 
$("#ErrorSearch").hide();
},

但是此动作滚动效果不好,我需要通过FadeIn()函数或其他方式移动效果良好。

1 个答案:

答案 0 :(得分:0)

FadeIn用于删除某些内容。据我所知,你需要的是平滑滚动到顶部。如果是,请告诉我,我会把代码。

success: function(data){
$(".insid_body_web").html(data);
$('html, body').animate({scrollTop:$('#insid_body_web').offset().top}, 'slow');
$("#ResultCompany1").show();
$("#ResultCompany2").show(); 
$("#ErrorSearch").hide();
},