滚动到指定div位置
2017-04-28 本文已影响86人
秋秋秋web
//滚动到指定位置
that.$scope.$$postDigest(function(){
setTimeout(function(){
if(that.$scope.before_msg_id){
vargomsgRowTop =$("#msgContent #msg_id_"+ that.$scope.before_msg_id).offset().top-40;
document.body.scrollTop= gomsgRowTop;
}
},200);
})