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)           }

相关