19921009ab
2016-05-18 17:58
<!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 cz=confirm("是否打开");
if(cz==true)
{var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/");
if(cl!=null)
{window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}
else{alert("88");}
else{alert("88");}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
function openWindow(){ // 新窗口打开时弹出确认框,是否打开 var newWin = confirm("是否打开新的网址?"); // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if(newWin == true)var newUrl = prompt("打开新的网址:","http://www.imooc.com/"); //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 if(newUrl != null)window.open(newUrl,"_blank","width=400,height=500,menubar=no,toolbar=no"); }
你这个一共有三处错误
1 function openWindow() 后面没有{ }
2 第一个 else{alert("88");} 这里 它还包含在第一个if语句中 所以 这里应该有个 } 来结尾
3{window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}
这里 "_blank" 应该有个 ,
<!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 cz=confirm("是否打开"); if(cz==true) { var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/"); if(cl!=null) { window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no') } else { alert("88"); } } else { alert("88"); } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>
//其实你写得没有错,但是括号对应逻辑比较乱,两个if else 的括号补好,还有window里少标点符号.加上好好捋一遍就ok了
<!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 cz=confirm("是否打开"); if(cz==true) {window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')} else{alert("88"); } } </script> </head> <body> <input name="button" type="button" onclick="openWindow()" value="新窗口打开网站"/> </body> </html>
function openWindow(){
var sure=confirm('是否打开?');
if(sure==true){
window.open('http://www.imooc.com/','_blank','width=400,height=500,scrollbars=yes,menubar=no,toolbar=no')
};
};
JavaScript入门篇
739817 学习 · 9566 问题
相似问题
回答 6
回答 1
回答 4
回答 1
回答 2