javascript學習筆記(十四) window對象使用介紹_基礎知識

來源:互聯網
上載者:User
1.視窗位置
以下取得瀏覽器視窗距螢幕左邊和上邊的位置
複製代碼 代碼如下:

var leftPos = (typeof window.screenLeft == "number") ? window.screenLeft : window.screenX; //左邊位置
var topPos = (typeof window.screenTop == "number") ? window.screenTop : window.screenY; //上邊位置

2.瀏覽器大小
以下取得瀏覽器頁面視口的大小
複製代碼 代碼如下:

var pageWidth = window.innerWidth,
pageHeight = window.innerHeight;

if (typeof pageWidth != "number") {
if (document.compatMode == "CSS1Compat") {
pageWidth = document.documentElement.clientWidth;
pageHeight = document.documentElement.clientHeight;
} else {
pageWith = document.body.clientWdith;
pageHeight = document.body.clientHeight;
}
}

3.開啟或快顯視窗
window.open()方法,可以接受4個參數,通常只需指定第一個參數,第一個參數為URL,第二個參數為_self 、_parent 、_top 、_blank 或者架構名
複製代碼 代碼如下:

window.open("http://www.baidu.com");
window.open("http://www.baidu.com","_blank");
window.open("http://www.baidu.com","topFrame","height=400,width=400,top=10,left=10,resizable = yes");
topFrame.resizeTo(500,300); //調整視窗大小
topFrame.moveTo(100,100); //移動視窗位置
topFrame.close(); //關閉新開啟的視窗,IE會報錯

4.location 對象
location.href(URL) 載入URL
複製代碼 代碼如下:

location.href(URL) 載入URL
location.href("http://www.baidu.com");
location.href = "http://www.baidu.com" ; //同上
location.assign = "http://www.baidu.com"; //同上
window.loaction = "http://www.baidu.com"; //同上
location.replace("http://www.baidu.com"); //同上,但不能回退

location.reload(); //重新載入(可能從緩衝中載入)
location.reload(true); //重新載入(從伺服器中載入)

location.search() 返回URL中的查詢字串,字串以為?開頭

5.擷取查詢字串參數
複製代碼 代碼如下:

function getQueryStringArgs() {
var qs = (location.search.length > 0) location.search.substring(1) : "";
var args ={};
var items = qs.split("&");
var item = null,name = null,value = null;
for (var i=0 ; i<items.length ; i++)
{
item = itmes[i].split("=");
name = decodeURIComponent(item[0]);
value = decodeURIComponent(item[1]);
args[name] = value;
}
return args;
}

//假設查詢字串參數是?q=javascript&num=10
var args = getQueryStringArgs();
alert(args["q"]); //"javascript"
alert(args["num"]); //"10"

6.history 對象
複製代碼 代碼如下:

history.go()頁面跳轉
history.go(-1); //後退一頁
history.go(1); //前進一頁
history.go(2); //前進兩頁
history.go("baidu.com"); 跳轉到最近的baidu.com頁面

history.back(); //後退一頁
history.forword(); //前進一頁

檢測當前頁是不是使用者開啟的第一個頁面
複製代碼 代碼如下:

if (history.length == 0) {
//如果開啟的是第一個頁面的話,執行某些操作
}

7.頁面載入
window.onload() 用於頁面載入結束後做某些操作
複製代碼 代碼如下:

window.onload = function () {
//執行某些操作
}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.