window.opener=null;window.close(),只支持IE6不支持IE7的问题
打开新窗口并且关闭本窗口不弹出要关闭窗口前的提示function openWin(){window.open(login.jsp,,fullscreen=yes,menubar=no,resizable=no);window.opener=null;window.close();}
在IE7下为
function openWin(){
window.opener=null;window.open(login.jsp,,fullscreen=yes,menubar=no,resizable=no);window.close();}
/////////////////////// <a href="#" onclick="window.opener=null;window.open(,_self);window.close();"> 不确认关闭 </a> 也就是在window.opener=null;window.close()之间加入window.open(,_self); 就OK了!