javascript 中?window.open()
?與?window.location.href
?的區(qū)別
1、window.open('index.html') 表示新增一個(gè)窗口打開(kāi) index.html 這個(gè)頁(yè)面,并不刷新
location.href('index.html') 表示在當(dāng)前窗口重定向到新頁(yè)面,打開(kāi)并刷新 index.html 這個(gè)頁(yè)面
2、window.location 是 window 對(duì)象的屬性,用來(lái)替換當(dāng)前頁(yè),也就是重新定位當(dāng)前頁(yè)
而 window.open 是 window 對(duì)象的方法,是用來(lái)打開(kāi)一個(gè)新窗口的函數(shù)
// 打開(kāi)新頁(yè)面
// 注意:有些瀏覽器的安全設(shè)置會(huì)將window.open()屏蔽,例如避免彈出廣告窗
window.open('./index.html');
// 在原窗口打開(kāi)新頁(yè)面
window.location.href="./index.html";
window.open()詳解
window.open ('page.html', 'newwindow', 'height=100, width=400, top=0, left=0, toolbar=no, menubar=no, scrollbars=no, resizable=no,location=n o, status=no')
參數(shù)解釋?zhuān)?nbsp;三個(gè)參數(shù)
- window.open 彈出新窗口的命令;
- 'page.html' 彈出窗口的文件名;
- 'newPage' 彈出窗口的名字(不是文件名),非必須,可用空’'代替;
- height=100 窗口高度;
- width=400 窗口寬度;
- top=0 窗口距離屏幕上方的象素值;
- left=0 窗口距離屏幕左側(cè)的象素值;
- toolbar=no 是否顯示工具欄,yes 為顯示;
- menubar=no 是否顯示菜單欄,yes 為顯示;
- scrollbars=no 是否顯示滾動(dòng)欄,yes 為顯示;
- resizable=no 是否允許改變窗口大小,yes 為允許;
- location=no 是否顯示地址欄,yes 為允許;
- status=no 是否顯示狀態(tài)欄內(nèi)的信息(通常是文件已經(jīng)打開(kāi)),yes為允許;
常用的 js 返回與刷新頁(yè)面
在此用 a 標(biāo)簽舉例
<a href="javascript: history.back(-1)">返回上一頁(yè)</a>
<a href="javascript:history.go(-1)">返回上一頁(yè)</a>
<a href="javascript:history.go(-2)">返回前兩頁(yè)</a>
<a href="javascript:location.reload()">刷新當(dāng)前頁(yè)面</a>
<a href="javascript:" onclick="self.location=document.referrer;">返回上一頁(yè)并刷新</a>
JavaScript
// 刷新當(dāng)前頁(yè)面
window.location.Reload();
self.location.reload();
window.location.href = window.location.href;