The sample code in IE6 is as follows:
window.opener= null;
window.close();
The sample code in IE7 is as follows:
window.opener= null;
window.open("","_self");
window.close();
If you want to display it in full screen (removing IE's toolbar, address bar, menu bar and other information), you can only use the window.open(); method. If the first page is to be displayed in full screen, you need to set up a transfer page. The code for the transfer page is as follows: (No need to write anything in the body)