ScrollIntoView in Chrome

前端 未结 2 954
半阙折子戏
半阙折子戏 2021-01-17 21:36

I use:

var el = document.getElementById(\"centd\");
el.scrollIntoView(true);

to scroll to specific position. In every browser it works fine

2条回答
  •  死守一世寂寞
    2021-01-17 22:03

    Make sure all your JavaScript code is run after your page completes loading:

    document.addEventListener('DOMContentLoaded', function() {
       // your code here
    }, false);
    

    Or if you're using jQuery:

    $(document).ready(function(){
    // your code
    });
    

    This will make sure that your code runs the way you intend.

提交回复
热议问题