window.history.length

小结:

1)登录成功后,进入浏览器空白页的Bug

2)F5刷新页面不会改变,该值。

 

 

 

History API - Web APIs | MDN https://developer.mozilla.org/en-US/docs/Web/API/History_API

        // the number of pages in the history stack
          if (window.history.length == 1) {
            window.location.href = "/";
          } else {
            window.history.go(-1)
          }

 

posted @ 2022-03-02 15:50  papering  阅读(239)  评论(0编辑  收藏  举报