修改地址栏URL而不刷新页面

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/sinat_19671783/article/details/80074790
//HTML5新特性:
            var state = {
                title: document.title,
                url: document.location.href,
                otherkey: null
            };
            history.replaceState(state, document.title, document.location.href);

猜你喜欢

转载自blog.csdn.net/sinat_19671783/article/details/80074790