xxxxml
2016-02-14 15:45
var str = confirm("是否打开");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(str == true){
var result = prompt("打开的网址是:","http://www.imooc.com");
// alert(result);
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
if(result != null){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
// Wopen();
}else{
alert("请输入网址!");
}
}else{
alert("再见!");
}
if(str){
window.open('http://www.imooc.con','_blank','width=400,height=500,menubar=no,toolbar=no');
}
你试试这个简单的 我认为你函数没有用对
JavaScript入门篇
739817 学习 · 9566 问题
相似问题