Bill0123
2015-08-03 17:04
<!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 open=confirm("确定打开窗口?") // 新窗口打开时弹出确认框,是否打开
if(open==ture){
var URL=prompt("请输入网址","http://www.imooc.com/") // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(prompt!=null){
window.open("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no")} //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
else{alert("bye!")} }
else{alert("bye!")}
}
</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 open=confirm("确定打开窗口?") // 新窗口打开时弹出确认框,是否打开 if(open==true){ var URL=prompt("请输入网址","http://www.imooc.com/") // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if(prompt!=null){ window.open("http://www.imooc.com/","_blank,width=400,height=500,menubar=no,toolbar=no,scrollbars=no")} //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 else{alert("bye!")} } else{alert("bye!")} } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
javascript语句末尾都没加分号;
windowopen("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no");
这一句只能打开”http://www.imooc.com/“,应该改为:
windowopen(URL,"_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no");
if(){
}
else{
}
你的else语句都放在了if语句的大括号里了哦。。
标点符号一定记得换成英文输入!!!标点符号一定记得换成英文输入!!!标点符号一定记得换成英文输入!!!(重要的事情说三遍)不然后面找问题,会找到哭的~
ture改成true还是不行
if(open==ture){
这里是true,不是ture
var URL=prompt("请输入网址","http://www.imooc.com/")
这里逗号错了,敲成中文的啦,改成英文的
修改后的代码
<!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 open=confirm("确定打开窗口?") // 新窗口打开时弹出确认框,是否打开 if(open==true){ var URL=prompt("请输入网址","http://www.imooc.com/") // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if(prompt!=null){ window.open("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no")} //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 else{alert("bye!")} } else{alert("bye!")} } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
JavaScript入门篇
739817 学习 · 9566 问题
相似问题