小技巧:window.open弹出新窗口后,如何关闭父窗体

window.open('index.aspx"');//弹出窗口

window.opener=null;

window.open('','_self');//关键的一步

window.close();

你可能感兴趣的:(WEB应用开发)