zoukankan      html  css  js  c++  java
  • window.showModalDialog和window.open关闭子页面时刷新父页面

    父窗体打开页面的javascript
    function GoToPage(id)
            {
           
               
    var title="title";
               
    var url="xxxxx.aspx?ID="+id+"&Radom="+Math.random();;
               
    var Width="700";
               
    var Height="600";
               
    var arguemnts = new Object();
               arguemnts.window = window;
                if (document.all&&window.print)
                {
                    window.showModalDialog(url,arguemnts,
    "dialogWidth:" + Width + "px;dialogHeight:" + Height + "px;center:yes;status:no;scroll:yes;help:no;");
            
                }
                
    else 
               { 
                    window.open(url,
    "","width=" + Width + "px,height=" + Height + "px,resizable=1,scrollbars=1"); 
               }
            }
    子页面执行代码后:
    Response.Write("<script language='javascript'>window.dialogArguments.window.location = window.dialogArguments.window.location;</script>");
                Response.Write(
    "<script>self.close();</script>");
    如果是window.open打开的:
    Response.Write("<script language='javascript'>window.opener.location.热reload();</script>") ; 
    Response.Write(
    "<script language='javascript'>window.opener=null;window.close();</script>");
    轉自:http://www.cnblogs.com/xh831213/archive/2007/09/27/907668.html

    申明

    非源创博文中的内容均收集自网上,若有侵权之处,请及时联络,我会在第一时间内删除.再次说声抱歉!!!

    博文欢迎转载,但请给出原文连接。

  • 相关阅读:
    算法问题实战策略 JUMPGAME 记忆化搜索
    算法问题实战策略 TRIANGLEPATH 动态规划入门题
    poj 2785 4 Values whose Sum is 0
    poj 3276 Face The Right Way 递推
    acwing 883. 高斯消元解线性方程组
    acwing 861. 二分图的最大匹配 模板
    Leetcode 42 接雨水 双指针 空间换时间
    LeetCode 1290. 二进制链表转整数
    LeetCode 1291. 顺次数
    <挑战程序设计竞赛> poj 3320 Jessica's Reading Problem 双指针
  • 原文地址:https://www.cnblogs.com/Athrun/p/1146407.html
Copyright © 2011-2022 走看看