子窗口刷新父窗口 javascript 并调用父窗口函数

原文链接: http://www.cnblogs.com/huanghai223/archive/2010/12/02/1894935.html
子窗口刷新父窗口 javascript 并调用父窗口函数

 

--父窗口

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Parent.aspx.cs" Inherits="Parent" %>



    无标题页
   


   


   

        父窗口

       

       

       
       
       
       

   



 

 

 

 

--子窗口

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Child.aspx.cs" Inherits="Child" %>



    无标题页
   


   


   

        子窗口

       
       
   

   



 

 

 

 

 

在java web在编程中我们有时也要知道javascript在知识,在此我将刷新父窗体的两种方式(window.open()和window.showModalDialog())的javascript写出来供大家参考:

   > a.jsp中:window.open('b.jsp')我们可以在b.jsp页面中可以通过window.opener得到a.jsp的window对象再让地址刷新就可以了 --> window.opener.location.reload();

  > a.jsp中:window.showModalDialog('b.jsp')我们可以对b.jsp页面的window对象设一个返回值(window.returnValue=1;),然后在a.jsp中得到返回值进行判断,如果正确则可以调用window.location.reload()进行刷新。
         a.jsp: var result =  window.showModalDialog('b.jsp');if(result ==1) window.location.reload();
        b.jsp: window.returnValue=1;
这样就可以达到刷新的效果了。

 

 

 

 

posted on 2010-12-02 22:45 钻石眼泪 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/huanghai223/archive/2010/12/02/1894935.html

你可能感兴趣的:(子窗口刷新父窗口 javascript 并调用父窗口函数)