DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> HTML基礎知識 >> HTML5詳解 >> Html5無刷新修改browser Url的方法
Html5無刷新修改browser Url的方法
編輯:HTML5詳解     
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')
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved