javacript实现关闭子窗口,刷新父窗口效果代码

 
<script src="/ad/gg300.js" type="text/JavaScript"></script>

本文主要要实现的是点父窗口里的弹出新窗口按钮,将弹出新窗口,在新窗口里面有两个方法,一个是刷新本面,另一个是关闭本页,同时要刷新父窗口,以下例子有两个文件,其中a.htm为父页,b.htm为子页,代码如下(由于a.htm页内容不多,可能会刷新过快而没看到效果,你可以适当增加内容,以便查看效果!)

a.htm程序代码
<!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=gb2312" />
 <title>父窗口</title>  
</head>    
<body> 
  <span οnclick="window.open('z.htm')" style="cursor:hand;">打开子窗口</span>  
</body> 
</html>  
b.htm 程序代码
<!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=gb2312" />
<title>子窗口</title>  
<script language="javascript">  
   function closethewindow()  
    {  
       var url="f.htm";//要刷新的窗口  
      opener.document.location=url;   window.close();  
    } 
</script>  
</head>    
<body> 
  <span οnclick="closethewindow();" style="cursor:hand;">关闭子窗口,刷新父窗口</span><br />  
 <span οnclick="javascript:window.location.reload();" style="cursor:hand;">刷新此窗口</span> 
 </body>  
</html>  

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值