欢迎大家来参考
<!DOCTYPE html>
<html>
<head>
<title>练习</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
function openWindow(){
var pd=confirm("是否打开新窗口");
if(pd==true){
var herf = prompt("请输入你要打开的网址,默认是http://www.imooc.com","http://www.imooc.com");
if(herf!="") {
if(herf!=null){
window.open(herf,"_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=yes");
}
else
{
alert("你取消了输入");
}
}
else{
alert("输入不能为空");
}
}
else{
alert("你没有选择打开新窗口");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>