window.open('url','target','attribs') 打开窗口
window.open('','full','top=0, left=0,toolbar=no, menubar=no, scrollbars=yes, resizable=yes,location=no, status=yes') 全屏幕打开窗口
window.opener.location.href=window.opener.location.href / / 刷新父页面
window.opener.location.reload() //刷新父页面
setTimeout('window.close();', 1000);
window.opener = 'xxx';window.close(); 关闭窗口无提示
<META http-equiv="refresh" content="0; url=information/index.html">