如何在页面中,让滚动条自动滚动并且定位到某个位置呢?我们可以使用如下的几种方法。
一、使用scroll配合animate
$("body,html").animate({scrollLeft:50},500);
$("body,html").animate({scrollTop:100},500);
上面的代码,实现的功能是,以BODY为参照对象,在页面中,定位到X坐标为50,Y坐标为100的页面位置。
二、以文档为参照对象
$(document).scrollLeft(50);
$(document).scrollTop(100);
滚动到坐标为50,100的页面位置。
三、以某元素为参照对象
$("#div1").scrollLeft(50);
$("#div1").scrollTop(100);
滚动定位到div1这个对象的50,100的这个坐标位置。