DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> javascript 實現子父窗體互相傳值的簡單實例
javascript 實現子父窗體互相傳值的簡單實例
編輯:JavaScript綜合知識     

 本篇文章主要是對javascript 實現子父窗體互相傳值的簡單實例進行了介紹,需要的朋友可以過來參考下,希望對大家有所幫助

window.showModalDialog() 使用方法:   var returnValue = window.showModalDialog(url [, arguments] [,features]);   url  -- 必選參數,類型:字符串,用來指定對話框要顯示的文檔的URL   arguments  -- 可選參數,類型:變體,用來向對話框傳遞參數,傳遞的參數類型不限,包括數組等,對話框通過window.dialogArguments來取得傳遞進來的參數   features   -- 可選參數,類型:字符串,用來描述對話框的外觀等信息,可以使用以下的一個或幾個,用分號“;”隔開   dialogHeight:對話框高度,不小於100px 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   參數傳遞:   1. 要想對話框傳遞參數,是通過arguments來進行傳遞的,類型不限制,對於字符串類型,最大為4096個字符,也可以傳遞對象,例如: parent.htm    代碼如下: <script>    var obj = new Object();    obj.name="justflyhigh.com";    window.showModalDialog("modal.htm",obj,"dialogWidth=200px;dialogHeight=100px");   </script>     modal.htm  代碼如下: <script>  var obj = window.dialogArguments;  alert("您傳遞的參數為:" + obj.name) </script>   2. 可以通過window.returnValue向打開對話框的窗口返回信息,當然也可以是對象,例如:   parent.htm   代碼如下: <script>  var result =window.showModalDialog("modal.htm",,"dialogWidth=200px;dialogHeight=100px");  alert(result); </script>   modal.htm 代碼如下: <script>  window.returnValue="http://www.jb51.net"; </script>    
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved