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
ShowModalDialog
showModalDialog
和window.open的详细使用
一、
showModalDialog
/showModelessDialog 弹出一个显示HTML页面的 模态/非模态 对话框。
·
2015-11-13 18:22
showModalDialog
showModalDialog
和showModelessDialog使用心得
一、
showModalDialog
和showModelessDialog有什么不同?
showModalDialog
:被打开后就会始终保持输入焦点。
·
2015-11-13 17:58
showModalDialog
js关闭子页面刷新父页面
一、打开方式为window.open window.opener.location.reload(); 二、打开方式为window.
showModalDialog
首先在打开时的时候要设置
·
2015-11-13 16:10
js
关于chrome等浏览器不支持
showModalDialog
的解决方案
目前,新版本的chrome和opera、Firefox等浏览器已经不支持
showModalDialog
方法。
·
2015-11-13 16:05
showModalDialog
浏览器弹出窗口返回值问题
主窗口rlt =
showModalDialog
(...), rlt就是返回值了. 2.
·
2015-11-13 15:12
弹出窗口
Window.
ShowModalDialog
使用手册
function showDialog(url,argv,dialogHeight,dialogWidth){ var sFeatures="dialogHeight:"+dialogHeight+"px;dialogWidth:"+dialogWidth+"px;scroll:0;status:0;" return window.s
·
2015-11-13 15:39
chrome中
showModalDialog
解决方案
调用myShowModalDialog function myShowModalDialog(url, width, height, callback) { if(window.
showModalDialog
·
2015-11-13 15:15
showModalDialog
模态窗口window.
showModalDialog
1、基本知识
showModalDialog
() (IE 4+ 支持) showModelessDialog() (IE 5+ 支持) window.
showModalDialog
·
2015-11-13 14:38
modalDialog的使用,图片切换,点击图片时打开一个窗体,并显示信息
主窗体 //与open的区别:1、参数二是传递的参数 2、属性设置格式:属性=属性值; 3、dialogHeight与dialogWidth没有单位,即需要自己加上px //window.
showModalDialog
·
2015-11-13 14:17
dialog
Chrome
showModalDialog
undefined is not a function 的替代方案
function myShowModalDialog(url, width, height, fn) { if (navigator.userAgent.indexOf("Chrome") > 0) { window.returnCallBackValue354865588 = fn; var paramsChrome = '
·
2015-11-13 13:17
showModalDialog
window.
showModalDialog
以及window.open用法简介
一、window.open()支持环境: JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+二、基本语法:window.open(pageURL,name,parameters) 其中:pageURL 为子窗口路径 name 为子窗口句柄 parameters 为窗口参数(各参数用逗号分隔
·
2015-11-13 13:34
根据父窗口传入对象动态生成选项
主要实现功能:window.
showModalDialog
()方法打开一个子窗口, 并在子窗口中根据父窗口传入的对象动态生成选项供用户选择, 之后返回选择的值传回给父窗口。
·
2015-11-13 12:22
对象
.net下导致Session失效的一种情况:js教本中使用window.open和window.
showModalDialog
时需要注意
在项目中碰到过一种情况先用window. open 打开 1.aspx , 1.aspx 中用 window.
showModalDialog
打开 2.aspx , 2.aspx 中用 window.open
·
2015-11-13 12:27
总结
showModalDialog
在开发中的一些问题
一、在页面调用window.open()函数后,可以直接在打开的页面中用window.opener来调用父页面的方法,然而如果用
showModalDialog
打开一个模态窗口,就不能通过window.opener
·
2015-11-13 12:16
showModalDialog
模式窗口
showModalDialog
的用法总结
打开窗口:var handle = window.
showModalDialog
(url, objects, feathers);其中:objects可以为参数(包括数组),也可以是对象。
·
2015-11-13 11:54
showModalDialog
转:模式窗口
showModalDialog
的用法总结
模式窗口
showModalDialog
的用法总结 最近几天一直在处理模式窗口的问题,索性写了这篇总结,以供参考: 1。
·
2015-11-13 11:40
showModalDialog
js中的open和
showModalDialog
一、window.open()支持环境: JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+二、基本语法:window.open(pageURL,name,parameters) 其中:pageURL 为子窗口路径 name 为子窗口句柄 parameters 为窗口参数(各参数用逗号分隔
·
2015-11-13 11:56
showModalDialog
如何在IE, Firefox, Opera浏览器中支持页面弹出并回传数据
在IE中, 弹出模态框可直接使用JS方法:
ShowModalDialog
(), 这个方法在Firefox3.0以后被支持, 但在较老版本的Firefox和Opera中均不被支持.
·
2015-11-13 09:13
firefox
window.
showModalDialog
以及window.open用法简介
一、window.open()支持环境: JavaScript1.0+/JScript1.0+/Nav2+/IE3+/Opera3+ 二、基本语法: window.open(pageURL,name,parameters) 其中: pageURL 为子窗口路径 name 为子窗口句柄 parameters 为窗口参数(各参数用逗号分隔) 三、示例: <SC
·
2015-11-13 09:19
window.
showModalDialog
弹出对话框刷新问题的总结
window.
showModalDialog
刷新父窗口和本窗口的方法及注意: 一.刷新父窗口的方法: A.使用window.returnValue给父窗口传值,然后根据值判断是否刷新。
·
2015-11-13 06:08
200多个js技巧代码(七)
199.模式窗口 父窗口 var url="aaa.jsp"; var data=
showModalDialog
(url,null,"dialogHeight:
·
2015-11-13 06:08
js技巧
关于window.
showModalDialog
父子窗口传值,及刷新父窗等问题
1.父子多种传值 farther.html <! DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > < HTML > < HEAD >&nb
·
2015-11-13 06:16
window.
showModalDialog
弹出窗口,关闭子窗,刷新父窗,在 .CS 中的实现
父窗口: <% @ Page Language = " C# " AutoEventWireup = " true " CodeBehind = " PopWindow.aspx.cs " Inherits = " WebUI.PopWindow
·
2015-11-13 06:16
用
showModalDialog
方法回传数据到父页中去
parent.aspx 做为父页,html 端代码如下: < script language = " javascript " > function select_value()  
·
2015-11-13 06:06
showModalDialog
如何在IE, Firefox, Opera浏览器中支持页面弹出并回传数据
在IE中, 弹出模态框可直接使用JS方法:
ShowModalDialog
(), 这个方法在Firefox3.0以后被支持, 但在较老版本的Firefox和Opera中均不被支持.
·
2015-11-13 06:10
firefox
解決用
showModalDialog
弹出页面后,form表单提交再次弹出一个新窗口問題
圖片:
showModalDialog
1.jpg、
showModalDialog
2.jpg default.aspx <head >  
·
2015-11-13 05:32
showModalDialog
弹出子页面及关闭子页面后刷新父页面
1、弹出子页面: Response.Write("<script>
showModalDialog
('htxx_copy.aspx?
·
2015-11-13 05:24
刷新
js open() 与
showModalDialog
()方法
此方法可通用,项目开发中经常要用到: //w:宽,h:高,url:地址,tag:标记 function showWin(w, h, url, tag) { var t = (screen.height - h) / 2; //离顶部距离 var l = (screen.width - w) / 2; //离左边距离 window.open(url, tag, "widt
·
2015-11-13 04:09
showModalDialog
在后台 .cs 中执行前台的js 函数
-- function openChild(num, num2) { var k = window.
showModalDialog
("pop.aspx?
·
2015-11-13 02:17
js
用AJAX改进你的设计
前者,window.open操作本来就是比较耗费资源的,通常由window.
showModalDialog
代替,即使这样也要弹出一个对话框;后者,需要把整个页面提交到服务器并
·
2015-11-13 02:58
Ajax
拒绝session丢失 利用DIV层实现对模态窗口的模拟
使用window.
showModalDialog
进行信息的提示,相当方便,也容易控制外观和布局。但是存在一个严重的问题,就是Session丢失。
·
2015-11-13 01:17
session
浏览器窗口刷新
刷新页面分两种情况: 1.普通页面刷新 window.location.reload() 2.window.
showModalDialog
打开的模态窗口 在模态窗口需要添加标签
·
2015-11-13 01:22
浏览器
FAQ-WEB-JSP
window.
showModalDialog
传参数/打开新窗口case 情况:(1)不许使用ajax.(2)在 a.jsp 上面点击一个按钮, 打开一个ModalDialogue, url是一个action
·
2015-11-13 01:35
Web
showModalDialog
后如何刷新父页面
方案一:父页面:window.
showModalDialog
('User.jsf?
·
2015-11-12 23:04
showModalDialog
showModalDialog
模态打开子窗体,返回值到父窗体
父页面:a.aspx 其中javascirpt 脚本如下: function opendata(strUrl) //
showModalDialog
 
·
2015-11-12 23:35
showModalDialog
Find窗口不能出现刚输入的数据
showModalDialog
刷新弹出页面
方法一: Find页面加 <META http-equiv="Pragma" content="no-cache"> 在<head></head>节中加 方法二: 传递一个不必要的参数 ,这个是时间。 function btnSelectFun_onclick(url) { va
·
2015-11-12 23:19
showModalDialog
linkButton与Button 的click事件与onclientClick事件
实验: 通过
showModalDialog
()弹出一个窗口,窗口中为FormView linkButton, 目的通过单击linkButton,保存数据,关闭网页
·
2015-11-12 23:12
client
iframe,modaldialog父子窗口相互通信的问题
--- 子窗口访问父窗口的window对象 --- 打开新窗口一般有几种方法,window.open(...),window.
showModalDialog
(...)
·
2015-11-12 21:09
iframe
Javascript 中
ShowModalDialog
的使用方法
ShowModalDialog
函数的功能:打开一个子窗口,并且可与父窗口相互传递数据,它与window.open的最大区别就在于由
ShowModalDialog
打开子窗口后,父窗口将不能操作。
·
2015-11-12 20:06
showModalDialog
关于window.
showModalDialog
公司经常用到的二个页面 List 页面和 Edit 页面。 List 页面上点击按钮,打开 Edit 页面添加、修改、删除 记录。 Edit 页面点击保存按钮时调用 windows.parent 或者window.opener 执行 location.reload(); 刷新 List 页面,再调用 window.close(); 关闭 Edit 页面
·
2015-11-12 19:49
showModalDialog
参数详解
基本介绍:
showModalDialog
() (IE 4+ 
·
2015-11-12 17:40
showModalDialog
用
showModalDialog
写的简单弹出框传参与反参
vReturnValue = window.
showModalDialog
(sURL [, vArguments] [,sFeatures]) sURL -- 必选参数,类型:字符串
·
2015-11-12 17:25
showModalDialog
弹出层,不使用
ShowModalDialog
,弹出层移动自由。
<style>#id1{width:100%;height:100%;background-color:#000;position:absolute;top:0;left:0;z-index:49;display:none; filter:progid:DXImageTransform.Microsoft.Alpha(opacity=25);}#id2{top:200px;
·
2015-11-12 16:25
showModalDialog
JS 弹出模态窗口解决方案
最近在项目中使用弹出模态窗口,功能要求: (1)模态窗口选择项目 (2)支持选择返回事件处理 在IE中有
showModalDialog
方法,可以很好的解决该问题,但是在Chrome中和FF
·
2015-11-12 16:56
解决方案
总结JavaScript(Iframe、window.open、window.
showModalDialog
)父窗口与子窗口之间的操作
一、Iframe 篇 //&&&&&&&&&&&&&&&&&&&&公共方法开始&&&&&&&&&&&&&&a
·
2015-11-12 15:38
js模态窗口
常用的浏览器chrome,Firefox,ie11,这三种分别支持document.open(),window.
showModalDialog
(),window.
showModalDialog
()的方式
·
2015-11-12 15:33
js
模式对话框里的CheckedChanged事件
问题: 模式对话框里的CheckedChanged事件不被触发: 解决方法: 一、先不直接
showModalDialog
出要的页面,而是要放一个中单页面 window.
showModalDialog
·
2015-11-12 14:28
checked
模式对话框 打开文件
xposition = (screen.width - 800) / 2; yposition = (screen.height - 420) / 2; window.
showModalDialog
·
2015-11-12 14:26
打开文件
showModalDialog
超过问题
a.aspx 页面页面代码: function SetPlay() { window.
showModalDialog
('SetAdvertisingTime.aspx
·
2015-11-12 14:17
showModalDialog
模式对话框
showModalDialog
var rs=window.
showModalDialog
(url,"splitPage","dialogWidth
·
2015-11-12 14:07
showModalDialog
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他