JavaScript彈出窗口方法匯總
來(lái)源:易賢網(wǎng) 閱讀:1862 次 日期:2014-08-14 15:54:36
溫馨提示:易賢網(wǎng)小編為您整理了“JavaScript彈出窗口方法匯總”,方便廣大網(wǎng)友查閱!

本文實(shí)例匯總了常用的JavaScript彈出窗口方法,供大家對(duì)比參考,希望能對(duì)大家有所幫助。詳細(xì)方法如下:

1.無(wú)提示刷新網(wǎng)頁(yè):

大家有沒(méi)有發(fā)現(xiàn),有些網(wǎng)頁(yè),刷新的時(shí)候,會(huì)彈出一個(gè)提示窗口,點(diǎn)“確定”才會(huì)刷新。

而有的頁(yè)面不會(huì)提示,不彈出提示窗口,直接就刷新了.

如果頁(yè)面沒(méi)有form,

則不會(huì)彈出提示窗口

如果頁(yè)面有form表單,

a)<form method="post" ...>

會(huì)彈出提示窗口

b)<form method="get" ...>

不會(huì)彈出

2. javascript刷新頁(yè)面的方法:

view source

print?1 window.location.reload();

使用window.open()彈出的彈出窗口,刷新父窗口

view source

print?1 window.opener.location.reload()

使用window.showDialog彈出的模式窗口

view source

print?1 window.dialogArguments.location.reload();

3.javascript彈出窗口代碼:

window.open()方式:

window.open()支持環(huán)境: JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+

基本語(yǔ)法:

view source

print?1 window.open(pageURL,name,parameters)

其中:

pageURL 為子窗口路徑

name 為子窗口句柄

parameters 為窗口參數(shù)(各參數(shù)用逗號(hào)分隔)

示例:

view source

print?1 <SCRIPT>

2 <!--

3 window.open ('page.html','newwindow','height=100,width=400,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no')

4 //寫成一行

5 -->

6 </SCRIPT>

腳本運(yùn)行后,page.html將在新窗體newwindow中打開,寬為100,高為400,距屏頂0象素,屏左0象素,無(wú)工具條,無(wú)菜單條,無(wú)滾動(dòng)條,不可調(diào)整大小,無(wú)地址欄,無(wú)狀態(tài)欄。

請(qǐng)對(duì)照。

上例中涉及的為常用的幾個(gè)參數(shù),除此以外還有很多其他參數(shù),請(qǐng)見四。

各項(xiàng)參數(shù)

其中yes/no也可使用1/0;pixel value為具體的數(shù)值,單位象素。

參數(shù) | 取值范圍 | 說(shuō)明

| |

alwaysLowered | yes/no | 指定窗口隱藏在所有窗口之后

alwaysRaised | yes/no | 指定窗口懸浮在所有窗口之上

depended | yes/no | 是否和父窗口同時(shí)關(guān)閉

directories | yes/no | Nav2和3的目錄欄是否可見

height | pixel value | 窗口高度

hotkeys | yes/no | 在沒(méi)菜單欄的窗口中設(shè)安全退出熱鍵

innerHeight | pixel value | 窗口中文檔的像素高度

innerWidth | pixel value | 窗口中文檔的像素寬度

location | yes/no | 位置欄是否可見

menubar | yes/no | 菜單欄是否可見

outerHeight | pixel value | 設(shè)定窗口(包括裝飾邊框)的像素高度

outerWidth | pixel value | 設(shè)定窗口(包括裝飾邊框)的像素寬度

resizable | yes/no | 窗口大小是否可調(diào)整

screenX | pixel value | 窗口距屏幕左邊界的像素長(zhǎng)度

screenY | pixel value | 窗口距屏幕上邊界的像素長(zhǎng)度

scrollbars | yes/no | 窗口是否可有滾動(dòng)欄

titlebar | yes/no | 窗口題目欄是否可見

toolbar | yes/no | 窗口工具欄是否可見

Width | pixel value | 窗口的像素寬度

z-look | yes/no | 窗口被激活后是否浮在其它窗口之上

view source

print?1 function ShowDialog(url) {

2 var iWidth=300; //窗口寬度

3 var iHeight=200;//窗口高度

4 var iTop=(window.screen.height-iHeight)/2;

5 var iLeft=(window.screen.width-iWidth)/2;

6 window.open(url,"Detail","Scrollbars=no,Toolbar=no,Location=no,Direction=no,Resizeable=no,

7 Width="+iWidth+" ,Height="+iHeight+",top="+iTop+",left="+iLeft);

8 }

window.showModalDialog方式:

基本介紹:

showModalDialog() (IE 4+ 支持)

showModelessDialog() (IE 5+ 支持)

window.showModalDialog()方法用來(lái)創(chuàng)建一個(gè)顯示HTML內(nèi)容的模態(tài)對(duì)話框。

window.showModelessDialog()方法用來(lái)創(chuàng)建一個(gè)顯示HTML內(nèi)容的非模態(tài)對(duì)話框。

使用方法:

view source

print?1 vReturnValue = window.showModalDialog(sURL [, vArguments] [,sFeatures])

2 vReturnValue = window.showModelessDialog(sURL [, vArguments] [,sFeatures])

參數(shù)說(shuō)明:

sURL--

必選參數(shù),類型:字符串。用來(lái)指定對(duì)話框要顯示的文檔的URL。

vArguments--

可選參數(shù),類型:變體。用來(lái)向?qū)υ捒騻鬟f參數(shù)。傳遞的參數(shù)類型不限,包括數(shù)組等。對(duì)話框通過(guò)window.dialogArguments來(lái)取得傳遞進(jìn)來(lái)的參數(shù)。

sFeatures--

可選參數(shù),類型:字符串。用來(lái)描述對(duì)話框的外觀等信息,可以使用以下的一個(gè)或幾個(gè),用分號(hào)“;”隔開。

1.dialogHeight :對(duì)話框高度,不小于100px,IE4中dialogHeight 和 dialogWidth 默認(rèn)的單位是em,而IE5中是px,為方便其見,在定義modal方式的對(duì)話框時(shí),用px做單位。

2.dialogWidth: 對(duì)話框?qū)挾取?/P>

3.dialogLeft: 離屏幕左的距離。

4.dialogTop: 離屏幕上的距離。

5.center: {yes | no | 1 | 0 }:窗口是否居中,默認(rèn)yes,但仍可以指定高度和寬度。

6.help: {yes | no | 1 | 0 }:是否顯示幫助按鈕,默認(rèn)yes。

7.resizable: {yes | no | 1 | 0 } [IE5+]:是否可被改變大小。默認(rèn)no。

8.status: {yes | no | 1 | 0 } [IE5+]:是否顯示狀態(tài)欄。默認(rèn)為yes[ Modeless]或no[Modal]。

9.scroll:{ yes | no | 1 | 0 | on | off }:指明對(duì)話框是否顯示滾動(dòng)條。默認(rèn)為yes。

下面幾個(gè)屬性是用在HTA中的,在一般的網(wǎng)頁(yè)中一般不使用。

10.dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印預(yù)覽時(shí)對(duì)話框是否隱藏。默認(rèn)為no。

11.edge:{ sunken | raised }:指明對(duì)話框的邊框樣式。默認(rèn)為raised。

12.unadorned:{ yes | no | 1 | 0 | on | off }:默認(rèn)為no。

參數(shù)傳遞:

(1).要想對(duì)話框傳遞參數(shù),是通過(guò)vArguments來(lái)進(jìn)行傳遞的。類型不限制,對(duì)于字符串類型,最大為4096個(gè)字符。也可以傳遞對(duì)象,例如:

-------------------------------

parent.htm頁(yè)面:

view source

print?1 <script>

2 var obj = new Object();

3 obj.name="jb51";

4 window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");

5 </script>

modal.htm頁(yè)面:

view source

print?1 <script>

2 var obj = window.dialogArguments

3 alert("您傳遞的參數(shù)為:" + obj.name)

4 </script>

(2)可以通過(guò)window.returnValue向打開對(duì)話框的窗口返回信息,當(dāng)然也可以是對(duì)象。例如:

parent.htm頁(yè)面代碼:

view source

print?1 <script>

2 str =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");

3 alert(str);

4 </script>

5 modal.htm

6 <script>

8 </script>

例子:

view source

print?1 function ShowDialog(url) {

2 var iWidth=300; //窗口寬度

3 var iHeight=200;//窗口高度

4 var iTop=(window.screen.height-iHeight)/2;

5 var iLeft=(window.screen.width-iWidth)/2;

6 window.showModalDialog(url,window,"dialogHeight: "+iHeight+"px; dialogWidth: "+iWidth+"px;

7 dialogTop: "+iTop+"; dialogLeft: "+iLeft+"; resizable: no; status: no;scroll:no");

8 }

注意這里的第二個(gè)參數(shù),window

4.模式窗口數(shù)據(jù)不刷新(緩存)問(wèn)題

在jsp頁(yè)面加入如下語(yǔ)句

view source

print?1 <%

2 response.setHeader("Pragma","No-Cache");

3 response.setHeader("Cache-Control","No-Cache");

4 response.setDateHeader("Expires", 0);

5 %>

5.模式窗口中,鏈接彈出新窗口問(wèn)題:

◎_blank,在新瀏覽器窗口中打開鏈接文件。

◎_parent,將鏈接的文件載入含有該鏈接框架的父框架集或父窗口中。如果含有該鏈接的框架不是嵌套的,則在瀏覽器全屏窗口中載入鏈接的文件,就象_self參數(shù)一樣。

◎_self,在同一框架或窗口中打開所鏈接的文檔。此參數(shù)為默認(rèn)值,通常不用指定。

◎_top,在當(dāng)前的整個(gè)瀏覽器窗口中打開所鏈接的文檔,因而會(huì)刪除所有框架。

在</head>和<body>間加入<a href=“a.html”target="_blank "/>

6.無(wú)提示關(guān)閉頁(yè)面的方法:

view source

print?01 function CloseWin(){

02 var ua = navigator.userAgent; var ie = navigator.appName=="Microsoft Internet Explorer"?true:false;

03 if(ie){

04 var IEversion = parseFloat(ua.substring(ua.indexOf("MSIE ")+5,ua.indexOf(";",ua.indexOf("MSIE "))));

05 if( IEversion< 5.5){

06 var str = '';

07 document.body.insertAdjacentHTML("beforeEnd", str);

08 document.all.noTipClose.Click();

09 } else {

10 window.opener =null; window.close();

11 }

12 }else{

13 window.close()

14 }

15 }

感興趣的讀者可以調(diào)試一下上述方法,相信會(huì)給大家?guī)?lái)一定的啟發(fā)與幫助。

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機(jī)網(wǎng)站地址:JavaScript彈出窗口方法匯總
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門公布的正式信息和咨詢?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽報(bào)名

  • 報(bào)班類型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)