AJax局部刷新可以通過Html5的新特性修改browser address。
window.history表示window對象的歷史記錄
window.history.pushState(object, title, new_url) -- 在window.history裡新增一個歷史記錄點
window.history.replaceState(object, title, new_url) -- 在window.history替換當前page的歷史記錄點
object - 可以擴展想要的object
title - 目前所有浏覽器都不支持
new_url 浏覽器不會檢查url是否存在,只改變url,url必須同域,不能跨域
eg: original url: www.test.com
window.history.pushState({time: 'test'}, ' ', 'www.test_test.com')