HTML5 : History API

History API

能夠在不刷新頁面的前提下動態改變瀏覽器地址欄中的URL地址,動態修改頁面上所顯示資源。

window.history 的方法和屬性

方法:back() forward() go()
屬性:length
//返回
window.history.back()
window.history.go(-1)
//向前跳轉
window.history.foward()
window.history.go(1)
//歷史記錄中頁面總數
history.length
複製代碼

HTML5 新方法:添加和替換歷史記錄的條目

pushState
history.pushState(state, title, url); 添加一條歷史記錄,不刷新頁面
參數
state : 一個於指定網址相關的狀態對象,popstate事件觸發時,該對象會傳入回調函數中。若是不須要這個對象,此處能夠填null。
title : 新頁面的標題,可是全部瀏覽器目前都忽略這個值,所以這裏能夠填null。
url : 新的網址,必須與前頁面處在同一個域。瀏覽器的地址欄將顯示這個網址。
建立2個文檔,demo.html和index.html,更改它們的title爲對應的名字,並在body裏輸入文檔名字做爲內容標記文檔。
//index.html
history.pushState(null, null,'./demo.html')
複製代碼
瀏覽器沒有刷新加載demo.html,只是更改瀏覽器地址欄地址
//index.html
history.pushState(null, null,'./demo.html')
history.pushState(null, null,'./inexistence.html')
複製代碼

不會檢查inexistence.html是否存在
應用--添加hash值,頁面只局部加載
//index.html
history.pushState(null, null,'#one')
複製代碼
replaceState
history.replaceState(state, title, url); 替換當前的歷史記錄,不刷新頁面
//demo.html
history.replaceState(null, null,'?one')
複製代碼
當前的歷史記錄http://localhost/class/demo.html被替換爲http://localhost/class/demo.html?one

事件

1.popstate 事件:歷史記錄發生改變時觸發,調用history.pushState()或者history.replaceState()不會觸發popstate事件
2.hashchange 事件:當頁面的hash值改變的時候觸發,經常使用於構建單頁面應用。

應用

點擊botton,content區出現對應的內容,經過瀏覽器返回按鈕能夠返回上一個內容頁面。
HTML
<div class="wrapper">
    <div class="header">
        <!-- 設置data值標記每一個地址 -->
        <button data="first">first</button>
        <button data="second">second</button>
        <button data="third">third</button>
    </div>
    <div class="content">
        <div class="item">first</div>
    </div>
</div>
複製代碼
JS
var item = document.getElementsByClassName('item')[0];
var header = document.getElementsByClassName('header')[0];
var page = '';
function init(){
    //替換頁面的歷史記錄,並把{newPage : 'first'}傳入這條歷史記錄下,方便後期popstate調用
    history.replaceState({newPage : 'first'}, null, '?first');
    ajax('GET','./getContent.php','page=first', doData, true)
}
init();
function doData(data){
    //將ajax獲取的數據插入到item元素節點裏面
    item.innerHTML = data;
}
header.addEventListener('click', function(e){
    
    page = e.target.getAttribute('data');
    history.pushState({newPage : page}, null, '?'+page);
    ajax('GET', './getContent.php','page='+page, doData, true);
})
//當頁面前進與後退的時候,popstate監聽歷史記錄變化,觸發對應頁面的ajax請求。
window.addEventListener('popstate', function(e){
    // console.log(e)
    var newPage = e.state.newPage;
    ajax('GET', './getContent.php','page='+newPage, doData, true);
})
複製代碼
php
<?php
header('content-type:text/html;charset="utf-8"');
error_reporting(0);

$page = $_GET['page'];
if($page == 'first'){
    $data = 'first third';
}else if($page == 'second'){
    $data = 'second third';
}else if($page == 'third'){
    $data = 'third third';
}

echo"{$data}";
複製代碼
相關文章
相關標籤/搜索