Does scrollIntoView work in all browsers?

前端 未结 6 500
不思量自难忘°
不思量自难忘° 2020-11-29 00:46

Does scrollIntoView() work in all browsers? If not is there a jQuery alternative?

6条回答
  •  孤城傲影
    2020-11-29 01:20

    You can use jQuery alternative and animate and elements:

    $('html, body').animate({
      scrollTop: $("#myElem").offset().top
    }, 1000);
    

提交回复
热议问题