码迷,mamicode.com
首页 > Windows程序 > 详细

window.history.pushState与ajax实现无刷新更新页面url

时间:2016-11-30 16:34:11      阅读:411      评论:0      收藏:0      [点我收藏+]

标签:org   html   state   hang   type   检查   不能   develop   地址   

ajax能无刷新更新数据,但是不能更新url

 

HTML5的新API: window.history.pushState, window.history.replaceState

用户操作history,点击前进后退按钮会触发popstate事件。

这些方法可以协同window.onpopstate事件一起工作。

 

改变url的demo

本页是foo.html,url改变成bar.html,内容却不变

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        
        <button onclick="changeUrl()">按钮</button>
        
        <script>
        function changeUrl() {
            var stateObj = {foo: bar};
            window.history.pushState(stateObj, page 2, bar.html); // 这将让浏览器的地址栏显示http://mozilla.org/bar.html,但不会加载bar.html页面也不会检查bar.html是否存在。
        }
            
        </script>
    </body>
</html>

 

window.history.pushState与ajax实现无刷新更新页面url

标签:org   html   state   hang   type   检查   不能   develop   地址   

原文地址:http://www.cnblogs.com/lqcdsns/p/6118161.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!