scrollIntoView Scrolls just too far

前端 未结 21 2117
盖世英雄少女心
盖世英雄少女心 2020-12-07 10:08

I have a page where a scroll bar containing table rows with divs in them is dynamically generated from the database. Each table row acts like a link, sort of like you\'d see

21条回答
  •  遥遥无期
    2020-12-07 10:42

    You can also use the element.scrollIntoView() options

    el.scrollIntoView(
      { 
        behavior: 'smooth', 
        block: 'start' 
      },
    );
    

    which most browsers support

提交回复
热议问题