关闭子窗口刷新父容代码:

此代码在IE 浏览器中起作用,不在360浏览器中起作用。。。。
关闭子窗口刷新父容代码:
<script>   
  function   window.onbeforeunload(){   
  window.opener.window.location.reload(true);   
  }   
  </script>
把它加到子窗口的<head>和</head>之是任意一个地方就OK了
 
要想在360浏览器中实现这个功能,这样写:
 
<%
out.println("<script>alert(window.opener.location.reload();window.close();</script>");
%>

你可能感兴趣的:(function,浏览器,IE,360)