我试图在点击时获取元素的ID,并将其传递给作为内部函数的animate函数。
我可以轻松获取ID但似乎无法将其传递给内部函数。
$("a").on("click",function() {
var id = '#' + $(this).attr('id').substring(2);
$('html, body').animate({
// console.log(id); NOT VISIBLE ?!
scrollTop: $(id).offset().top
}, 2000);
});