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