test.php
- <form name="form1" method="post" action="">
-
<a href="javascript:void(null)" class="add" onClick="open('demo.php','','resizable=1,scrollbars=1,status=no,toolbar=no,menu=no,width=500,height=400,left=150,top=50')">增加</a>
-
<input type="text" name="text1">
-
</form>
<form name="form1" method="post" action="">
<a href="javascript:void(null)" class="add" onClick="open('demo.php','','resizable=1,scrollbars=1,status=no,toolbar=no,menu=no,width=500,height=400,left=150,top=50')">增加</a>
<input type="text" name="text1">
</form>
demo.php
- <script language="javascript" type="text/javascript">
- function returnValue()
- {
-
window.opener.document.all.text1.value=document.getElementById("returnText").value;
- window.close();
- }
-
</script>
-
<p>
-
<input type="button" name="Submit" value="提交" onclick="returnValue();">
-
<input name="returnText" type="text" id="returnText">
-
</p>
<script language="javascript" type="text/javascript">
function returnValue()
{
window.opener.document.all.text1.value=document.getElementById("returnText").value;
window.close();
}
</script>
<p>
<input type="button" name="Submit" value="提交" onclick="returnValue();">
<input name="returnText" type="text" id="returnText">
</p>
补充:window.opener 的用法
window.opener 的用法在一般的用法中,只是用来解决关闭窗口时不提示弹出窗口, 而对它更深层的了解一般比较少。其 实 window.opener是指调用window.open方法的窗口。在工作中主要是用来解决部分提交的。这种跨页操作对工作是非常有帮助的。
如果你在主窗口打开了一个页面,并且希望主窗口刷新就用这个,打开页面的window.opener就相当于主窗口的window。
主窗口的刷新你可以用 window.opener.location.reload();
如果你要提交主窗口: 你可以改成这样 window.opener.yourformname.submit()
实例2:open
test.php
- <script language="JavaScript">
-
var a = '';
- window.open("test3.php");
- function button1_onclick() {
- alert(a);
- }
-
</script>
-
-
<input type="button" id="button1" name="button1" value="Button" onclick="return button1_onclick()" />
<script language="JavaScript">
var a = '';
window.open("test3.php");
function button1_onclick() {
alert(a);
}
</script>
<input type="button" id="button1" name="button1" value="Button" onclick="return button1_onclick()" />
test3.php
- <script language="JavaScript">
- function sendTo()
- {
-
window.opener.a='test';
- window.close();
- }
-
</script>
-
-
<form id="form1" name="form1">
-
<input type="button" id="button1" name="button1" value="返回" onclick="sendTo()" />
-
</form>
<script language="JavaScript">
function sendTo()
{
window.opener.a='test';
window.close();
}
</script>
<form id="form1" name="form1">
<input type="button" id="button1" name="button1" value="返回" onclick="sendTo()" />
</form>
实例3:showModalDialog
test.php
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
<html xmlns="http://www.w3.org/1999/xhtml">
-
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<title>弹出窗口</title>
-
<script language="JavaScript">
- function pop()
- {
-
var arr = showModalDialog("test5.php", "", "dialogWidth:400; dialogHeight:400; status:0");
- if (arr != null){
- alert('您点击了:' + arr);
- }
- }
-
</script>
-
</head>
-
<body>
-
-
<div align="center"><input type="button" value="点我弹出窗口" onclick="pop()" /></div>
-
-
</body>
-
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>弹出窗口</title>
<script language="JavaScript">
function pop()
{
var arr = showModalDialog("test5.php", "", "dialogWidth:400; dialogHeight:400; status:0");
if (arr != null){
alert('您点击了:' + arr);
}
}
</script>
</head>
<body>
<div align="center"><input type="button" value="点我弹出窗口" onclick="pop()" /></div>
</body>
</html>
test5.php
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-
<html xmlns="http://www.w3.org/1999/xhtml">
-
<head>
-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-
<title>弹出窗口</title>
-
<script>
- function check(s){
-
window.returnValue = s;
-
window.opener=null;
- window.close();
- }
-
</script>
-
</head>
-
-
<body>
-
<table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
-
<tr align="center">
-
<td>点击链接:</td>
-
<td><a href="#" onclick="check('Share JavaScript')">Share JavaScript</a></td>
-
<td><a href="#" onclick="check('share.com')">share.com</a></td>
-
</tr>
-
</table>
-
</body>
-
</html>
分享到:
相关推荐
### JavaScript 弹出窗口命令总结 #### 一、概述 在网页开发中,JavaScript 提供了多种用于创建弹出窗口的方法。这些方法可以帮助开发者在不离开当前页面的情况下展示额外的信息或进行用户交互。本文将详细介绍 `...
该函数与 `g_OpenWindow()` 类似,但增加了返回值的支持,可以在弹出窗口关闭时获取到数据。 代码实现如下: ```javascript function g_OpenReturnWindow(pageURL, innerWidth, innerHeight) { var screenWidth = ...
在JavaScript中,`showModalDialog`是一个非常有用的函数,它允许我们打开一个新的浏览器窗口或对话框,并与父窗口进行交互。这个功能在开发过程中经常用于创建弹出式表单、确认对话框或者需要用户输入信息的场景。...
在网页开发中,有时我们需要打开新的窗口或者弹出对话框来与用户进行交互。`window.showModalDialog`和`window.open`是JavaScript中用于实现这一目标的两个关键函数。它们都可以创建新窗口,但有着不同的特性和使用...
在Web开发中,创建弹出窗口是常见的交互方式,用于显示一些额外的信息或者进行特定的操作。`window.showModalDialog` 和 `window.open` 都是JavaScript提供的两种打开新窗口的方法,但它们在功能和使用场景上有着...
在JavaScript中,`showModalDialog`和`window.open`是两个用于打开新窗口或对话框的方法,它们在网页交互和用户界面设计中扮演着重要角色。这篇文章将详细讲解这两个方法的功能、用法以及它们的区别。 首先,我们来...
JavaScript 提供了两种常用的方法来创建这类窗口:`ShowModalDialog` 和 `window.open`。这两种方法各有特点,在不同的场景下具有不同的适用性。 #### 二、ShowModalDialog详解 **1. 功能介绍** `ShowModalDialog...
***可以与JavaScript相结合,以实现Web页面上复杂的交互功能,包括创建弹出窗口对话框。 在使用JavaScript的window.open方法时,开发者可以指定打开新窗口的URL,以及窗口的特性,比如工具栏、地址栏、尺寸等。比如...
在JavaScript编程中,`showModalDialog`是一个古老但仍然有用的函数,用于打开一个新的浏览器窗口或对话框,并与父页面进行交互。这个功能在处理用户输入、显示信息或进行特定操作时非常有用。在这个场景中,我们...
在JavaScript中,`showModalDialog`是一个古老的浏览器API,用于打开一个模态对话窗口,它在用户与对话框交互之前阻止了对父窗口的访问。这个API在现代Web开发中已经逐渐被淘汰,但由于某些老旧系统的存在,理解其...
在JavaScript中,当需要在新窗口中执行代码并返回结果到当前页面时,通常采用window.showModalDialog()和window.open()这两种方法。以下详细解释这两种方法的用法和特点。 首先,window.showModalDialog()方法用于...
在JavaScript编程中,`showModalDialog` 是一个古老但仍然被一些开发者使用的函数,用于以模态对话框的形式打开一个新的窗口。这个对话框会阻止用户与父窗口进行交互,直到对话框关闭。在这个过程中,我们可以传递...
- 模态对话框可能会对用户体验造成影响,因为它会阻塞用户的交互,因此在现代Web开发中,更倾向于使用非模态对话框或者自定义的弹出层来实现类似的交互效果。 总之,`window.showModalDialog()`是JavaScript中创建...
例如,在子窗口中设置`window.returnValue`,然后在父窗口中通过`window.showModalDialog`的返回值来访问。 ```javascript // 子窗口设置返回值 window.returnValue = '用户输入的数据'; // 父窗口获取返回值 var ...
在JavaScript中,弹出子窗口并传递值给父窗口是一个常见的需求,特别是在构建交互式的Web应用时。这个过程可以通过使用`window.open()`或`window.showModalDialog()`函数来实现。让我们详细了解一下这两个方法以及...
根据提供的文件信息,本文将详细解释如何使用JavaScript在父页面中弹出一个新的窗口,并从这个新弹出的窗口中获取数据。此技术常用于需要在当前页面与另一个页面之间进行数据交互的应用场景。 ### 一、理解弹窗原理...
在JavaScript编程中,`window.showModalDialog`是一个用于打开模态对话框的函数,它能够创建一个新的浏览器窗口或者在当前窗口内显示一个弹出层,阻止用户与父窗口的交互,直到用户关闭对话框为止。这个方法在创建...
这个方法在创建用户交互和自定义弹出窗口场景中非常有用。让我们深入探讨一下`Window.showModalDialog()`的详细用法和相关知识点。 首先,`showModalDialog()`方法的基本语法如下: ```javascript window....
- `features`:可选参数,定义弹出窗口的一些属性,如大小、位置等。 #### 二、参数详解 1. **URL**:这是必须指定的参数,表示要打开的新窗口的地址或HTML文档的路径。 2. **Arguments**:这是一个可选参数,...