2015-11-02 215 views

回答

0

您應該能夠實現,使用window.history.pushState和popstate(見下面的示例)。 出於兼容性指this
有關完整文檔參考this

jQuery(document).ready(function ($) { 

       if (window.history && window.history.pushState) { 

        window.history.pushState('forward', null, null); 

        $(window).on('popstate', function() { 
         //Add logic here 
        }); 

       } 
      }); 
相關問題