當(dāng)前位置:軟件學(xué)堂 > 資訊首頁(yè) > 網(wǎng)絡(luò)編程 > 編程其他 > Javascript window對(duì)象

Javascript window對(duì)象

2012/11/28 16:40:38作者:佚名來(lái)源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

Javascript window對(duì)象
Javascript window對(duì)象處于對(duì)象層次的最頂端,它提供了處理naVigator窗口的方法和屬性。JaVascript
的輸出可通過(guò)document對(duì)象的方法來(lái)完成,而輸入則可以通過(guò)window對(duì)象來(lái)實(shí)現(xiàn)。下面通過(guò)
一個(gè)打開(kāi)新窗口的例子介紹window對(duì)象的使用方法。

【實(shí)例代碼】

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無(wú)標(biāo)題文檔</title> <script type="text/JavaScript"> <!-- function MM_openBrWindow(theURL,winName,features) { //v2.0 window.open(theURL,winName,features); }//--> </script> </head> <body onload="MM_openBrWindow('pop1/index.html','','width=550,height=420')">打開(kāi)瀏覽器窗口</body> </html>

【代碼分析】

在瀏覽器中預(yù)覽,效果如圖20.15所示,打開(kāi)了一個(gè)位于popl文件下的。index.html窗口.
寬度為550像素,高度為420像素。

window對(duì)象運(yùn)行效果

 【素材及源碼下載】

請(qǐng)點(diǎn)擊:window對(duì)象 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: Javascript  window  對(duì)象