似乎无法抓取ID并将其传递给内部函数

时间:2017-09-11 19:45:26

标签: javascript jquery html

我试图在点击时获取元素的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);
});

0 个答案:

没有答案