现在的位置: 首页 > 综合 > 正文

返回值

2013年07月16日 ⁄ 综合 ⁄ 共 1143字 ⁄ 字号 评论关闭

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.zhutiai.com/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>js 弹出窗口 返回值</title>

</head>

<body>
<form id="form1" name="form1" method="post" action="">
<input name="zone" type="text" id="zone"  />

<input type="button" name="button" id="button" value="打开窗口" onclick="window.open('a.htm','vv');" />
</form>
</body>
</html>

a.htm代码

<script>
function c()
{
 opener.document.getelementbyid("zone").value = document.all("zone.name").value;
 window.opener = null;
 window.close();
}
</script>
<input name="zone.name" type="text" id="zone.name"  />
<a href="void(0);" onclick="网页特效:c();">返回值</a>

 

 

 

 

 

 

 

 window.returnValue可以实现从模式窗口向父窗口传递值的作用

 

window.returnValue="lodge_list.php?guestname="+guestname+"&guestunit="+guestunit+"&zs_add="+zs_add+"&ddsj="+ddsj+"&zs_manager="+zs_manager+"&zs_handle="+zs_handle;

 

 var vReturnValue = window.showModalDialog("search.php","搜索页面","scroll:0;status:0;help:0;resizable:0;dialogWidth:500px;dialogHeight:180px");
   if(typeof(vReturnValue)!='undefined'){
    window.location.href=vReturnValue;

抱歉!评论已关闭.