正解,不客气
function openWindow(){
// 新窗口打开时弹出确认框,是否打开
var openw = confirm("确定要打开窗口吗?");
if(openw == true){
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
var urllink = prompt('请输入打开的网站','http://www.imooc.com');
if(urllink == null){
return;
}else{
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(urllink,'_blank','width=400px,height=500px,menubar=no,toolbar=no');
}
window.open('http//www.imooc.com/','_blank','width=400px,height=500px,menubar=no,toolbar=no');
}else if(openw == false){
return;
}
}