點選瀏覽器後退按鈕時彈出提示資訊

antzone發表於2017-03-22

本章節分享一段程式碼例項,當點選瀏覽器的後退按鈕的時候能夠能夠彈出一定的提示資訊。

程式碼如下:

[JavaScript] 純文字檢視 複製程式碼
$(document).ready(function($){  
  if(window.history && window.history.pushState){
    $(window).on('popstate',function(){
      var hashLocation=location.hash;
      var hashSplit=hashLocation.split("#!/");
      var hashName=hashSplit[1];
      if(hashName!==''){
        var hash=window.location.hash;
        if(hash===''){
          alert("提示語");
        }
      }
    });
    window.history.pushState('forward', null, './#forward');
  }
});


相關文章