DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> Document.location.href和.replace的區別示例介紹
Document.location.href和.replace的區別示例介紹
編輯:JavaScript基礎知識     
document.location.href和document.location.replace都可以實現從A頁面切換到B頁面,但他們的區別是:

用document.location.href切換後,可以退回到原頁面。

而用document.location.replace切換後,不可以通過“後退”退回到原頁面。

關於document.location.href或其他可回退的切換方式,我還發現一個細節,

用個例子來說明:

假設有A.htm B.htm C.htm三個頁面

A.htm裡有這樣一句:document.location.href="/b.htm";

b.htm裡有這樣一句:document.location.href="/c.htm";

注意兩個都是可回退的切換。


1:當從A切換到B再切換到C時,實際內存中保留了三個頁面:A、B、C

2:回退到B時,C頁面被清出內存!

3:再次回退,到A頁面時,B頁面也被清出內存!

4:再次向前(不是用切換而是用向前)轉到B頁面時,

內存中保留的是A和B

>>>當一個文檔被location.replace()替換後,它就會從當前的歷史對象中移除了
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved