js求大神找出代码错误
<!DOCTYPEhtml><html><head><metacharset="utf-8"><title>newdocument</title><metahttp-eq...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
if(confirm("打开?")){
var confirmUrl= prompt("即将打开","http://www.imooc.com/");
if(confirmUrl){window.open(confirmUrl,'width=400,height=500,menubar=no,toolbar=no');}
else{alert("不打开!");}
}
else{alert("就不打开!");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
任务
1、新窗口打开时弹出确认框,是否打开
提示: 使用 if 判断确认框是否点击了确定,如点击弹出输入对话框,否则没有任何操作。
2、通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
3、打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 展开
<html>
<head>
<meta charset="utf-8">
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
if(confirm("打开?")){
var confirmUrl= prompt("即将打开","http://www.imooc.com/");
if(confirmUrl){window.open(confirmUrl,'width=400,height=500,menubar=no,toolbar=no');}
else{alert("不打开!");}
}
else{alert("就不打开!");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
任务
1、新窗口打开时弹出确认框,是否打开
提示: 使用 if 判断确认框是否点击了确定,如点击弹出输入对话框,否则没有任何操作。
2、通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
3、打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询