<!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 a=confirm("是否打开新窗口");
if(a==true){
var newweb=prompt("确认打开的网址:","http://www.imooc.com");
if(newweb!=null){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')
}
else{alert(2);}
}
else{alert(1);}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!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 a=confirm("是否打开新窗口");
if(a==true){
var newweb=prompt('确认打开的网址:','http://www.imooc.com');
if(newweb!=null){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')
}
else{
alert(2);
}
}
else{
alert(5);
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
var newweb=prompt("确认打开的网址:"," 这句逗号和分号是不是不对?
是window.open里面该写双引号吗