标签:
//打开一个新窗口并设置其大小
window.open(‘index.html‘,‘‘,‘width=450,height=750,location=no,menubar=no,status=no,toolbar=no‘ );
//不询问是否关闭
window.opener=null;window.open(‘‘,‘_self‘);
//关闭自己的窗口
window.close();
标签:
原文地址:http://www.cnblogs.com/jetereting/p/5018166.html