代码写的应该没有问题,为什么点击了右面的按钮没有反应?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var str1=confirm("是否打开新窗口!");
if(str1==true){
var str=prompt("请输入url:","http://www.imooc.com/");
if(url!=null){
window.open(str,'_blank',width=400px,height=500px,menubar=no,toolbar=no);
}
else{
document.write("url为空!");
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>