How to scroll to the particular div using jquery or javascript

后端 未结 5 993
耶瑟儿~
耶瑟儿~ 2021-02-07 16:25

I want to scroll to the particular div using jquery

I have written the code like:

 $(\"#button\").on(\'click\',function(){
     var p = $(\"#dynamictabst         


        
5条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-07 17:21

    Here is the code :-

    $(document).ready(function (){
      $("#button").on('click',function(){                
             $('html, body').animate({
                  scrollTop: $("#dynamictabstrp").offset().top
            }, 1000);               
        });
    });
    

    or

    $(document).ready(function (){
      $("#button").click(function(){                
             $('html, body').animate({
                  scrollTop: $("#dynamictabstrp").offset().top
            }, 1000);               
        });
    });
    

提交回复
热议问题