JS 关闭本页面,刷新父页面

  1. //刷新父页面,关闭本页面
  2.                 this.Page.Response.Write("<script>alert('法律专家信息更新成功!');"+
  3.                     "window.opener.parent.document.location.reload();"+
  4.                     "window.opener=null;window.open( '', '_self');window.close();"+
  5.                     "</script>");
 
  1. this.Page.Response.Write("<script>alert('法律专家信息更新成功!');window.location='default.aspx';</script>");

你可能感兴趣的:(JS 关闭本页面,刷新父页面)