how to remember scroll position of page

前端 未结 7 1814
南笙
南笙 2020-12-15 00:31

I am submitting some data to my database then reloading the same page as the user was just on, I was wondering if there is a way to remember the scroll position the user was

7条回答
  •  情书的邮戳
    2020-12-15 01:19

    Store the position in an hidden field.

    than with jQuery store the scrollTop and scrollLeft

    $("form#myform").submit(function(){
       $(this).append("");
    
       $(this).append("");
    });
    

    Than on next reload do a redirect or print them with PHP

    $(document).ready(function(){
       
    });
    

提交回复
热议问题