Jquery Mobile go back button scrolls to top

前端 未结 4 937
深忆病人
深忆病人 2020-12-18 17:07

In my Jquery Mobile website I am using href for back button like;

 

        
4条回答
  •  执念已碎
    2020-12-18 17:39

    I found a solution here: https://forum.jquery.com/topic/jquery-mobile-scroll-to-top-of-page-on-page-load#14737000005271291

    (function($){
          $( document ).on( "mobileinit", function() {
                var silentScroll = $.mobile.silentScroll;
                  $.mobile.silentScroll = function( ypos ) {
                if ( $.type( ypos ) !== "number" ) {
                   // FIX : prevent auto scroll to top after page load
                   return;
                } else {
                   silentScroll.apply(this, arguments);
                }
            }
          })
    }(jQuery));
    

提交回复
热议问题