Window.opner = null; window.close (), only supports IE6 does not support IE7
Open the new window and close the prompt before the window is closed without pop -up
function openwin () {) {
Window.open ('Login.jsp', '', 'FullScreen = YES, Menubar = no, Resizable = no');
Window.opner = null;
window.close ();
}
UE7
function openwin () {) {
Window.opner = null;
Window.open ('Login.jsp', '', 'FullScreen = YES, Menubar = no, Resizable = no');
window.close ();
}
////////////////////////
<A href = "#" OnClick = "Window.opner = Null; Window.open ('', '_ Self'); Window.close ();"> Unschers </a>
That is, add Window.open ('', '_ Self') between window.opner = null;
It's ok!