问题描述比如点击瞄点G的时候,想带一点动画效果让右边的G回到顶部,可是动画是有了,获取的位置不准确相关代码// 请把代码文本粘贴到下方(请勿用图片代替代码)$(document).on('click','.letterList li',function(){ var top= $($(this).children('a').attr('href')).offset().top - 53; $('.cityList').animate({ scrollTop: top }, 500); console.log($($(this).children('a').attr('href')),$(this).children('a').attr('href')); });
添加回答
举报
0/150
提交
取消