1. 程式人生 > >window.showModalDialog用法

window.showModalDialog用法


 1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ChildWeb.aspx.cs" Inherits="ChildWeb"%> 2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 3
 4<html xmlns="http://www.w3.org/1999/xhtml"> 5<head runat="server"> 6    
<title>子窗體----更新資訊</title> 7    <script language="javascript"> 8        //初始化子窗體 9        function InitPage()
10        {
11            var myArgs =new Array();
12            myArgs = window.dialogArguments;
13            document.getElementById("txtName1").value = myArgs[0].toString();
14            document.getElementById(
"txtAge1").value = myArgs[1].toString();
15        }
16        //返回父窗體17        function BackValue()
18        {         
19            var name = document.getElementById("txtName1").value;
20            var age = document.getElementById("txtAge1").value;  
21            var arrArgs =new Array(name, age);        
22            window.returnValue = arrArgs;
23            window.close();
24        }
25    </script>26</head>27<body onload="return InitPage();">28    <form id="frmChild" runat="server">29        <div>30          姓名:<input type="text" value="" id="txtName1"/><br />31          年齡:<input type="text" value="" id="txtAge1"/><br />32        <input id="btnSubmit" type="button"  value="Submit" onclick="return BackValue();"/>33        </div>34   </form>35</body>36</html>37

相關推薦

window.showModalDialog用法

 1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ChildWeb.aspx.cs" Inherits="ChildWeb"%> 2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Tr

模式視窗window.showModalDialog()的用法

模式視窗的用法一、問題:    我想彈出一個視窗,然後在彈出的窗口裡,選擇或輸入一些資訊,要求這些資訊返回到父頁面。建立父頁面:a.htm<html><head>    <title></title>    <mce:sc

解決window.showModalDialog在Firefox無法支持

tro feature 兩個 cti open 希望 appname new bar 在網頁程序中,有時我們會希望使用者按下按鈕後開啟一個保持在原窗口前方的子窗口,而在IE中,我們可以使用showModalDialog來達成,語法如下 : vReturnValue = w

js——window.open用法

idt 返回 input blank mage ont doctype cti tro 今天在慕課網上接觸了下javaScript的基礎。以下是結合運用了confirm(),prompt(),open()的小例子。 1. confirm(message); 參數說明

window.open()和window.showModalDialog

iframe ngs 連接 and 瀏覽器中 指定 window esp tool 零、window.open()和window.showModalDialog 本人在使用時主要實現如下個功能,   以對話框形式彈出畫面,且要求對話框置頂,不可操作其他畫面,並且關閉畫面時刷

window.open()和window.showModalDialog中參數傳遞

yslow dst 非模態 中文 jscript process left proc dsa 轉載地址:http://www.jb51.net/article/60507.htm 本文實例講述了js的window.showModalDialog及window.open用法。

Uncaught TypeError: window.showModalDialog is not a function 谷歌

sop fun replace 原創文章 aso csdn 版權 使用 parent //新版本谷歌沒有window.showModalDialog,創建一個window.openif(window.showModalDialog == undefined){ windo

window.showModalDialog 在谷歌Uncaught TypeError: undefined is not a function

oda help fun use 版權 index typeerror undefine modal if(navigator.userAgent.indexOf("Chrome") >0 ){var winOption = "height="+height+",wi

高版本Chrome相容window.showModalDialog辦法

高版本Chrome相容window.showModalDialog辦法 由於showmodaldialog 不屬於W3C標準,在新版本瀏覽器中不再受支援,我們需要使用window.open來自定義一個showmodaldialog 來代替。 將要開啟模態框的主頁面papa.html程

window.showModalDialog 關閉當前頁面重新整理父頁面

//父頁面函式 function showPort(){ var k = window.showModalDialog("url,"_blank","dialogWidth=500px;dialogHeight=300px;center=yes;location=no"); if(k

window.showModalDialog()使用與form表單檔案上傳以及父子頁面傳值

window.showModalDialog()簡介: (1)使用方法:  window.showModalDialog(sURL [, vArguments] [,sFeatures]) (2)引數說明 sURL--必選引數,型別:字串。用來指定對話方塊要顯示的頁面的

window.open代替window.showModalDialog(非標準的BOM方法)

1, 最基本的彈出視窗程式碼 window.open('page.html'); 2, 經過設定後的彈出視窗    window.open('page.html', 'newwindow', 'height=100, width=400, top=0,

解決chrome 不相容window.showModalDialog問題

在父視窗加上這麼一段程式碼: <script type="text/javascript"> function showmodal()       {         alert("我是父親視窗")  if(window.showModalDialog == u

模式視窗 window.showmodaldialog 總結

就是要在一個影象外掛上面,需要彈出一個視窗,在彈出的視窗之上又的彈出一個模式視窗。然後我用到了window.showmodaldialog 方法 1.引數 showModalDialog("子頁面地址","向子頁面傳遞引數","子頁面外觀設定"),比如說 var dat

window.ShowModalDialog使用詳解

原文地址:http://www.jcwcn.com/forum.php?mod=viewthread&tid=243027 Javascript有許多內建的方法來產生對話方塊,如:window.alert(), window.confirm(),window.pro

高版本chrome不再支援window.showmodaldialog 的臨時替換方案【用window.open】

接管別人的專案,因開發時用了showmodaldialog 導致最近很多使用者chrome升級到最新之後 就無法彈窗了。原因是新版chrome[37+]不再支援showmodaldialog。 showmodaldialog 並不是W3C標準內的方法,起源於IE, 當是低版

window.showModalDialogwindow.open的引數區別

window.showModalDialog(viewURL,window,"dialogHeight=400px;dialogWidth=600px;center=yes;status=no

window.showModalDialog模態視窗引數說明

Window.ShowModalDialog的引數問題(父窗體向子窗體傳值)   create date:2009-5-12   description:window.showModalDialog開啟子視窗並重新整理主頁面   param strUrl:子頁面路徑   p

WINDOW.OPEN()用法詳解

1, 最基本的彈出視窗程式碼    window.open('page.html'); 2, 經過設定後的彈出視窗    window.open('page.html', 'newwindow', 'height=100, width=400, top=0, left=0

JS中window.showModalDialog()詳解

window.showModalDialog()方法用來建立一個顯示HTML內容的模態對話方塊。  window.showModelessDialog()方法用來建立一個顯示HTML內容的非模態對話方塊。  使用方法: vReturnValue = window.sho