javascript彈出對話框的幾種形式

對話框有三種javascript

1:只是提醒,不能對腳本產生任何改變;html

2:通常用於確認,返回 true 或者 false ,因此能夠輕鬆用於 if...else...判斷java

3:一個帶輸入的對話框,能夠返回用戶填入的字符串,常見於某些留言本或者論壇輸入內容那裏的 插入UBB格式圖片數組

下面咱們分別演示:
<html
>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>三種彈出對話框的用法實例</title>
<script language="javascript">
function ale()
{//這個基本沒有什麼說的,就是彈出一個提醒的對話框
   alert("我敢保證,你如今用的是演示一");
}
function firm()
{//利用對話框返回的值 (true 或者 false)
   if(confirm("你確信要轉去 天轟穿的博客?"))
   {//若是是true ,那麼就把頁面轉向thcjp.cnblogs.com
       location.href="
http://thcjp.cnblogs.com";
   }
   else
   {//不然說明下了,赫赫
       alert("你按了取消,那就是返回false");
   }
}
function prom()
{
   var name=prompt("請輸入您的名字","");//將輸入的內容賦給變量 name ,
   //這裏須要注意的是,prompt有兩個參數,前面是提示的話,後面是當對話框出來後,在對話框裏的默認值
   if(name)//若是返回的有內容
   {
       alert("歡迎您:"+ name)
   }
}
</script>
</head>
瀏覽器

<body>
<p>對話框有三種</p>
<p>1:只是提醒,不能對腳本產生任何改變;</p>
<p>2:通常用於確認,返回 true 或者 false ,因此能夠輕鬆用於 ifelse判斷 </p>
<p>3:一個帶輸入的對話框,能夠返回用戶填入的字符串,常見於某些留言本或者論壇輸入內容那裏的 插入UBB格式圖片 </p>
<p>下面咱們分別演示:</p>
<p>演示一:提醒對話框</p>
<p>
<input type="submit" name="Submit" value="提交" onclick="ale()" />
</p>
<p>演示二 :確認對話框 </p>
<p>
<input type="submit" name="Submit2" value="提交" onclick="firm()" />
</p>
<p>演示三:要求用戶輸入,而後給個結果</p>
<p>
<input type="submit" name="Submit3" value="提交" onclick="prom()" />
</p>
</body>
</html>
less

Javascript有許多內建的方法來產生對話框,如:window.alert(), window.confirm(),window.prompt().等。然而IE提供更多的方法支持對話框。如:ide

  showModalDialog() (IE 4+ 支持)
  showModelessDialog() (IE 5+ 支持)
ui


window.showModalDialog()方法用來建立一個顯示HTML內容的模態對話框,因爲是對話框,所以它並無通常用window.open()打開的窗口的全部屬性。
window.showModelessDialog()方法用來建立一個顯示HTML內容的非模態對話框。
spa

當咱們用showModelessDialog()打開窗口時,沒必要用window.close()去關閉它,當以 非模態方式[IE5]打開時,打開對話框的窗口仍能夠進行其餘的操做,即對話框不老是最上面的焦點,當打開它的窗口URL改變時,它自動關閉。而模態 [IE4]方式的對話框始終有焦點(焦點不可移走,直到它關閉)。模態對話框和打開它的窗口相聯繫,所以咱們打開另外的窗口時,他們的連接關係依然保存, 而且隱藏在活動窗口的下面。orm

使用方法以下:
vReturnValue = window.showModalDialog(sURL [, vArguments] [, sFeatures])
vReturnValue = window.showModelessDialog(sURL [, vArguments] [, sFeatures])
參數說明:
sURL
必選參數,類型:字符串。用來指定對話框要顯示的文檔的URL。
vArguments
可選參數,類型:變體。用來向對話框傳遞參數。傳遞的參數類型不限,包括數組等。對話框經過window.dialogArguments來取得傳遞進來的參數。
sFeatures
可選參數,類型:字符串。用來描述對話框的外觀等信息,能夠使用如下的一個或幾個,用分號「;」隔開。
dialogHeight 對話框高度,不小於100px,IE4中dialogHeight 和 dialogWidth 默認的單位是em,而IE5中是px,爲方便其見,在定義modal方式的對話框時,用px作單位。
  dialogWidth: 對話框寬度。
  dialogLeft: 距離桌面左的距離。
  dialogTop: 離桌面上的距離。
  center: {yes | no | 1 | 0 }:窗口是否居中,默認yes,但仍能夠指定高度和寬度。
  help: {yes | no | 1 | 0 }:是否顯示幫助按鈕,默認yes。
  resizable: {yes | no | 1 | 0 } [IE5+]:是否可被改變大小。默認no。
  status: {yes | no | 1 | 0 } [IE5+]:是否顯示狀態欄。默認爲yes[ Modeless]或no[Modal]。
scroll:{ yes | no | 1 | 0 | on | off }:指明對話框是否顯示滾動條。默認爲yes。

還有幾個屬性是用在HTA中的,在通常的網頁中通常不使用。
dialogHide:{ yes | no | 1 | 0 | on | off }:在打印或者打印預覽時對話框是否隱藏。默認爲no。
edge:{ sunken | raised }:指明對話框的邊框樣式。默認爲raised。
unadorned:{ yes | no | 1 | 0 | on | off }:默認爲no。

傳入參數:
要想對話框傳遞參數,是經過vArguments來進行傳遞的。類型不限制,對於字符串類型,最大爲4096個字符。也能夠傳遞對象,例如:

test1.htm
====================
<script>
var mxh1 = new Array("mxh","net_lover","孟子E章")
var mxh2 = window.open("about:blank","window_mxh")
  // 向對話框傳遞數組
window.showModalDialog("test2.htm",mxh1)
  // 向對話框傳遞window對象
window.showModalDialog("test3.htm",mxh2)
</script>

test2.htm
====================
<script>
var a = window.dialogArguments
alert("您傳遞的參數爲:" + a)
</script>

test3.htm
====================
<script>
var a = window.dialogArguments
alert("您傳遞的參數爲window對象,名稱:" + a.name)
</script>

能夠經過window.returnValue向打開對話框的窗口返回信息,固然也能夠是對象。例如:

test4.htm
===================
<script>
var a = window.showModalDialog("test5.htm")
for(i=0;i<a.length;i++) alert(a[i])
</script>

test5.htm
===================
<script>
function sendTo()
{
var a=new Array("a","b")
window.returnValue = a
window.close()
}
</script>
<body>
<form>
<input value="返回" type=button onclick="sendTo()">
</form>

常見問題:
1,如何在模態對話框中進行提交而不新開窗口?
若是你 的瀏覽器是IE5.5+,能夠在對話框中使用帶name屬性的iframe,提交時能夠制定target爲該iframe的name。對於IE4+,你能夠用高度爲0的frame來做:例子,

test6.htm
===================
<script>
window.showModalDialog("test7.htm")
</script>

test7.htm
===================
if(window.location.search) alert(window.location.search)
<frameset rows="0,*">
<frame src="/about:blank">
<frame src="test8.htm">
</frameset>

test8.htm
===================
<form target="_self" method="get">
<input name=txt value="test">
<input type=submit>
</form>
<script>
if(window.location.search) alert(window.location.search)
</script>
2,能夠經過
http://servername/virtualdirname/test.htm?name=mxh方式直接向對話框傳遞參數嗎?答案是不能。但在frame裏是能夠的。應用背景:須要打開一個子窗體,將須要修改的數據傳到子窗體,而後將子窗體中修改過的數據,傳回父窗體。(父窗體不能被刷新)例如:父窗體只供用戶查看,子窗體用於修改。方法:父窗體:dim xxx '返回值dim yyy '傳到子窗體的參數var xxx = ShowModalDialog('xxx.asp','yyy','dialogWidth:100px;DialogHeight=290px;status:no')子窗體:dim yyy '從父窗體傳來的參數dim xxx '傳回父窗體的參數yyy = window.dialogArgumentsxxx = window.returnValue

相關文章
相關標籤/搜索