E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
dialogArguments
ASP.NET頁面傳值,並返回子頁值至父頁
:用window.opener代表父窗口的window对象(window.opener)//2、模态子窗口:间接通过传window对象到子窗口,然后子窗口可获得父窗口的window对象(window.
dialogArguments
wish366
·
2023-07-25 20:37
ASP.NET
asp.net
textbox
javascript
server
button
null
HTML
标签
iframe标签的属性动态src参数传递的过程:functiondd(){varid=window.
dialogArguments
;document.getElementById("oframe").src
旅行家John
·
2021-04-27 18:56
HTML父子页面通信问题(showModalDialog)
在子窗口中使用window.
dialogArguments
来取得传递进来的参数。Features--可选参数,类型:字符串。
weixin_30872867
·
2020-09-17 00:20
window.showModalDialog刷新父窗口 父子窗口之间传值
第一个问题:刷新父窗口(没有传值操作)父页面打开时一定要传window参数openModalDialog("son.html",window,800,600);子页面中刷新:window.
dialogArguments
.location
ZKLxuankai
·
2020-09-16 22:39
javascript
showModalDialog基本操作:父子窗口互传参数
CopytoClipboard引用的内容:[www.veryhuo.com]父窗口functiononOpenWindow(){//showModalDialog的第二个参数是传递给子窗口的值//在子窗口可以通过window.
dialogArguments
oso_kill
·
2020-09-16 22:41
ajax学习
window.
dialogArguments
的使用
showModelessDialogEX.htmvarsUserName="";functionfnCallDialog(){showModelessDialog("myDialog.htm",window,"status:false;dialogWidth:300px;dialogHeight:300px");}functionfnUpdate(){oName.innerText=sUserNa
theking888
·
2020-09-14 13:43
JScript
弹出的窗口关闭后如何刷新主画面
window.open的参数就不细写出来了)IEshowModalDialog弹出窗口:window.showModalDialog(url,window,'');IE关闭弹出窗口后刷新:window.
dialogArguments
.location.replace
hzg7361
·
2020-09-12 16:26
window.
dialogArguments
弹出子窗口window.showModalDialog(url,window);然后在弹出的子窗口中:window.
dialogArguments
即为父窗口window对象的引用。想搞什么都可以了。
绝凌峰
·
2020-09-11 01:38
.NET
打开新窗口window.open 和window.showModalDialog中父子窗口的交互
与父窗口产生交互,分别使用的是window.opener和window.
dialogArguments
(补充:比如在A页面上使用window.showModalDialog来打开一个页面B并且向其穿值过去
沙漠驼舟
·
2020-08-10 10:23
window.
dialogArguments
的使用
showModelessDialogEX.htmvarsUserName="";functionfnCallDialog(){showModelessDialog("myDialog.htm",window,"status:false;dialogWidth:300px;dialogHeight:300px");}functionfnUpdate(){ oName.innerText=sUser
y112102
·
2020-08-10 08:15
Jvascript
window.opener 与 window.
dialogArguments
的用法
1>window.opener的用法在一般的用法中,只是用来解决关闭窗口时不提示弹出窗口,而对它更深层的了解一般比较少。其实window.opener是指调用window.open方法的窗口。在工作中主要是用来解决部分提交的。这种跨页操作对工作是非常有帮助的。如果你在主窗口打开了一个页面,并且希望主窗口刷新就用这个,打开页面的window.opener就相当于主窗口的window。主窗口的刷新你可
打杂人
·
2020-08-08 13:01
Web
前端乱炖
window.openDialog的实例
dialogfunctiongetValue(){varvalue=window.
dialogArguments
;//通过
dialogArguments
方法拿到父窗口中的value值document.forms
沙漏无语
·
2020-07-05 16:23
JavaScript
javascript父页面传值
id);if(obj.checked){obj.checked=true;vargr=document.getElementById('GridView1');for(i=0;ivark=window.
dialogArguments
iteye_15732
·
2020-07-02 04:43
技术杂绘
js实现图片滚轮放大缩小以及鼠标拖动
dialogHeight:"+screen.height+";dialogWidth:"+screen.width+";help:no;status:no");将图片链接导入到页面中图片详情vardir=window.
dialogArguments
旭哥在线
·
2020-06-24 01:03
html查看图片
[window.
dialogArguments
]
详细问题描述:在火狐浏览器中弹出一个子窗口,子页面中是一个分页,点下一页后子页面会刷新,然后window.
dialogArguments
对象就丢失了,alert输出显示undefined[解决方法见第三项
·
2019-09-25 07:33
JS模态窗口返回值兼容问题的完美解决方法
因系统要兼容原IE已使用的关闭方法,经调试测得,需对window.
dialogArguments
进行再较验,不然易出问题。
·
2019-09-24 02:06
【前端】js小技巧(持续更新)
1.js获取父级窗体控件的值window.
dialogArguments
.frames.document.getElementById('id').value
Vezn
·
2016-06-30 14:03
随笔杂记
总结showModalDialog在开发中的一些问题
可以直接在打开的页面中用window.opener来调用父页面的方法,然而如果用showModalDialog打开一个模态窗口,就不能通过window.opener去调用父窗口的方法了,这时,要用window.
dialogArguments
·
2015-11-13 12:16
showModalDialog
JS模态窗口返回值兼容问题解决方案
因系统要兼容原IE已使用的关闭方法,经调试测得,需对window.
dialogArguments
进行再较验,不然易出问题。
·
2015-11-12 19:21
解决方案
HTML传递和接收参数
function Request(strName) { var vwin = window.
dialogArguments
; //得到window参数(模式窗口获取父窗口对象
·
2015-11-12 19:15
html
window.showModalDialog刷新父窗口 父子窗口之间传值 问题
父页面打开时一定要传window参数 openModalDialog("son.html",window,800,600); 子页面中刷新: window.
dialogArguments
.location
·
2015-11-12 12:40
Javascript刷新页面大全
非模态刷新父页面:window.opener.location.reload(); 模态刷新父页面:window.
dialogArguments
.location.reload(); &
·
2015-11-12 10:03
JavaScript
弹出网页模式对话框window.showModalDialog
对话框通过window.
dialogArguments
来取得传递进来的参数。sFeatur
·
2015-11-11 15:10
js 页面操作
非模态刷新父页面:window.opener.location.reload(); 模态刷新父页面:window.
dialogArguments
.location.reload(); 先来看一个简单的例子
·
2015-11-11 08:17
js
JavaScript Window对象属性
dialogArguments
设置或获取传递给模式对话框窗口的变量或变量数组。 dialogHeight 设置或获取模式对话框的高度。 dialogL
·
2015-11-11 05:16
JavaScript
Javascript刷新页面的几种方法
关键字: javascript刷新页面的几种方法 非模态刷新父页面:window.opener.location.reload(); 模态刷新父页面:window.
dialogArguments
.location.reload
·
2015-11-11 04:54
JavaScript
适用于IE的自适应大小并且自动居中的对话框页面(javaScript)
IE下有效 1 function AutoSizeWindow() { 2 if (window.
dialogArguments
·
2015-11-08 13:24
JavaScript
弹出窗口showModalDialog用法
内容的模态对话框: 父页面:var ret = window.showModalDialog(url[, args][, features]); 子页面: 接收参数:var arg = window.
dialogArguments
·
2015-11-08 11:40
showModalDialog
showModelDialog改变源页面的内容
showModalDialog("002.htm",window,"");<2>在新打开的对话框页面中就可以通过
dialogArguments
来访问源页面
·
2015-11-08 10:35
dialog
window.
dialogArguments
的使用
1 <HTML> 2 <HEAD> 3 <TITLE>showModelessDialogEX.htm</TITLE> 4 <SCRIPT> 5 var sUserName=""; 6 function fnCallDialog() 7 { 8
·
2015-11-07 15:02
arguments
ShowModalDialog关闭后刷新父页面
项目中用window.showModalDialog(url)打开模态对话框,操作完成后关闭对话框,并刷新父页面;在子窗口用window.
dialogArguments
.location.reload
·
2015-11-07 10:26
showModalDialog
模式窗口刷新父窗口
模式窗口中点击按钮让父窗口跳转到新的页面,不可用 opener.document.location 方式来设置,只能在父窗口把当前window对象传递到模式窗口,模式窗口使用
dialogArguments
·
2015-11-02 14:35
模式
javascript 基础篇4 window对象,DOM
dialogArguments
设置或获取传递给模式对话框窗口的
·
2015-11-02 09:48
JavaScript
2012.6.27近期总结,1.sql字符串转换(cast,CONVERT )调用wcf服务,关闭模态窗口刷新付页面
CAST (@x AS NVARCHAR(3)); 非模态刷新父页面:window.opener.location.reload(); 模态刷新父页面:window.
dialogArguments
.location.reload
·
2015-11-01 15:32
convert
some tips
JS: 1 var pobj = window.
dialogArguments
; 2 if (pobj == null ){  
·
2015-11-01 12:14
tips
子窗体更新父窗体内容 JS
open方法打开的窗口:opener.document.getElementById("")模态或非模态窗口:
dialogArguments
.document.getElementById
·
2015-10-31 14:33
js
常用JS方法
1,关闭子窗口,给父窗口返回一个值 window.returnValue = ""; 2,在子窗口中得到父窗口传过来的参数 var result = window.
dialogArguments
·
2015-10-31 12:53
js
showModalDialog 的使用的方法
window.showModalDialog("SightFckEditor.aspx",a,"status=yes");//a 是要传的对象的名 到另外的一个页面是使用的是window.
dialogArguments
.value
·
2015-10-31 11:18
showModalDialog
如何在页面之间传递数据量较大的复杂数据?
2.我们可以利用模态对话框的
dialogArguments
属性来实现跨页面的数据传递, 通过如下方式可获得模态对话框的 dialo
·
2015-10-31 11:31
数据
Javascript刷新页面的几种方法
非模态刷新父页面:window.opener.location.reload(); 模态刷新父页面:window.
dialogArguments
.location.reload(); 先来看一个简单的例子
·
2015-10-31 11:01
JavaScript
javascript widndow 属性方法
dialogArguments
设置或获取传递给模式对话框窗口的变量或变量数组。 dialogHeight 设置或获取模式对话框的高度。 dialogLeft 设置或获取模式对话框的左坐标。
·
2015-10-31 11:55
JavaScript
C# 调用JS 并为JS变量设置
ClientScriptManager csm = this.ClientScript; string js = string.Format("window.
dialogArguments
.docume
·
2015-10-31 10:19
C#
子窗体与父窗体传值操作的js示例
//返回值给父窗体 function returnParent(value) {//获取子窗体返回值 var parent = window.
dialogArguments
·
2015-10-31 10:15
js
在window.showModelessDialog打开的窗体中调用原窗体的alert会使IE死掉。
以
dialogArguments
将window作为参数传递。test_parent_win.htm: 1 <!
·
2015-10-31 09:00
window
弹出窗口高度调整自适应
//弹出窗口高度调整自适应 function resetDialogHeight(){ if(window.
dialogArguments
== null){ return
·
2015-10-31 09:34
弹出窗口
window.
dialogArguments
的使用
dialogArguments
只能在mode和modeless窗口中才能使用,可以传递传递任意类型的值, 上例就是传得失window.
·
2015-10-31 09:00
arguments
[window.
dialogArguments
]
详细问题描述: 在火狐浏览器中弹出一个子窗口,子页面中是一个分页,点下一页后子页面会刷新,然后window.
dialogArguments
对象就丢失了,alert输出显示undefined [解决方法见第三项
·
2015-10-30 13:51
arguments
模态窗体刷新父窗体
Response.Write("<script>
dialogArguments
.location.href=
dialogArguments
.location.href;window.close
·
2015-10-27 14:48
刷新
父窗体与子窗体调用总结
window.showModalDialog方法 父窗体:var retrunValue=window.showModalDialog(...)方法获得子窗体的值 子窗体: a.获得父窗体控件的值: window.
dialogArguments
.getElementById
·
2015-10-23 08:53
总结
模态窗体刷新父窗体
模态窗体刷新父窗体 Response.Write("<script>
dialogArguments
.location.href=
dialogArguments
.location.href
·
2015-10-21 13:43
刷新
上一页
1
2
3
4
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他