頁面跳轉的幾種方法
阿新 • • 發佈:2019-02-05
location.replace("path"); //location 的 replace()方法可以用一個新的文件替換當前文件,並且會覆蓋History物件中的記錄 window.location.href = 'path'; window.history.back(-1); // 返回上一頁面 window.opener.location.reload(); //重新整理父視窗 top.location = 'path'; //指定頂層網頁的跳轉,而不是網頁內部巢狀的iframe self.location = "http://www.baidu.com"; //在當前頁面開啟,不能返回上一頁面(self === this) this.location.href = "path"; //在當前頁面開啟,不能返回上一頁面(self === this) parent.location.href = "path"; //在父頁面開啟新頁面 window.navigate("path"); // IE專有物件
3、meta方法
<meta http-equiv="refresh" content="10"> //只是重新整理不跳轉到其他頁面
<meta http-equiv="refresh" content="5;url=path"> //定時轉到其他頁面,content為時間