2020-2-17 seo達(dá)人
javascript中window.open()與window.location.href的區(qū)別
window.open(‘index.html’) 表示新增一個(gè)窗口打開 index.html 這個(gè)頁面,并不刷新
location.href(‘index.html’) 表示在當(dāng)前窗口重定向到新頁面,打開并刷新 index.html 這個(gè)頁面
window.location 是 window 對(duì)象的屬性,用來替換當(dāng)前頁,也就是重新定位當(dāng)前頁
而window.open 是 window 對(duì)象的方法,是用來打開一個(gè)新窗口的函數(shù)
// 打開新頁面
// 注意:有些瀏覽器的安全設(shè)置會(huì)將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ù)解釋: 三個(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)打開),yes為允許;
常用的js返回與刷新頁面
在此用a標(biāo)簽舉例
<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()">刷新當(dāng)前頁面</a>
<a href="javascript:" onclick="self.location=document.referrer;">返回上一頁并刷新</a>
js
// 刷新當(dāng)前頁面
window.location.Reload();
self.location.reload();
window.location.href = window.location.href;
藍(lán)藍(lán)設(shè)計(jì)的小編 http://bouu.cn