提示框
alert('message');
关闭窗口
window.close();
后退
window.history.go(history);
重定向
window.location.href='url';
延迟重定向
window.setTimeout("window.location.href='url';",milliseconds);
打开窗口
window;open(file);
打开父窗口
window.opener.location.reload();