关闭子窗口时刷新父窗口js



//刷新父窗口
window.onbeforeunload = function(){
 if (document.body.clientWidth-event.clientX<21||event.altKey||event.ctrlKey){
         //关闭时刷新父窗口

        alert("close");  
       window.opener.location.reload();

}else{

       //否则则是刷新子窗口时也刷新父窗口

       alert("refrash");  

       return false;

      }
}

关闭子窗口时刷新父窗口js,布布扣,bubuko.com

关闭子窗口时刷新父窗口js

上一篇:*网站集群建设


下一篇:(转)jQuery.extend 函数详解