美文网首页
scrollIntoView

scrollIntoView

作者: hnxycxd | 来源:发表于2019-03-04 14:29 被阅读0次


// 锚点跳转 by ID

export function ScrollToAnchor(anchorName) {

  if (anchorName) {

    const anchorElement = document.getElementById(anchorName);

    if (anchorElement) {

      anchorElement.scrollIntoView({

        block: 'start', behavior: 'auto'

      });

    }

  }

}

相关文章

网友评论

      本文标题:scrollIntoView

      本文链接:https://www.haomeiwen.com/subject/vkciuqtx.html