C# 如何使用不同对话框上的变量
比如说我有一个对话框a,另一个对话框b,b为模式对话框,先有a后有b,我现在想在a中用b中的一个变量conn,请问如何操作...
比如说 我有一个对话框a,另一个对话框b,b为模式对话框,先有a后有b,我现在想在a中用b中的一个变量conn,请问如何操作
展开
1个回答
展开全部
我转的文章,希望对你有用:
>父窗体是使用window.open(url,name,feather)打开子窗体时,使用下面的方法获取。
调用父窗体函数:window.opener.Fun();
调用父窗体物件:window.opener.document.getElementById("txt_test").value
2>子窗体是IFrame的时候,直接用window.parent.Fun或window.parent.Obj
3>父窗体是使用window.showModalDialog(url,arguments,feather)打开子窗体时,使用下面的方法获取。
1.体在Show子窗体的时候,把当前window对象(只要对象的话用window.document即可)当参数传到子窗体:
方法如:window.showModalDialog(url,window,"dialogwidth=300px;")
2.窗体获取这个window对象.var pWin=window.dialogArguments;
3.同过pWin来调用父窗体函数。(例如 父窗体函数为pFun());
var pwin = window.dialogArguments;
if(pwin!=undefined){
var codeStr = "pFun();"
pwin.execScript(codeStr,"javascript");
当然上面的方法直接等价于pWin.pFun()
>父窗体是使用window.open(url,name,feather)打开子窗体时,使用下面的方法获取。
调用父窗体函数:window.opener.Fun();
调用父窗体物件:window.opener.document.getElementById("txt_test").value
2>子窗体是IFrame的时候,直接用window.parent.Fun或window.parent.Obj
3>父窗体是使用window.showModalDialog(url,arguments,feather)打开子窗体时,使用下面的方法获取。
1.体在Show子窗体的时候,把当前window对象(只要对象的话用window.document即可)当参数传到子窗体:
方法如:window.showModalDialog(url,window,"dialogwidth=300px;")
2.窗体获取这个window对象.var pWin=window.dialogArguments;
3.同过pWin来调用父窗体函数。(例如 父窗体函数为pFun());
var pwin = window.dialogArguments;
if(pwin!=undefined){
var codeStr = "pFun();"
pwin.execScript(codeStr,"javascript");
当然上面的方法直接等价于pWin.pFun()
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询