<!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 mess=confirm("是否打开网页"); if(mess==true) { prompt("输入网站","http://www.imooc.com"); } var openshit=prompt if(openshit!=null) { window.open('openshit','height=500,width=400,menubar=no,toolbar=no') } else {alert("badnews")} else{alert("badnews") } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body></html>
1 回答
已采纳
千秋此意
TA贡献158条经验 获得超187个赞
function openWindow() { var mess, openshit; mess = confirm("是否打开网页"); if (mess == true) { openshit = prompt("输入网站", "http://www.imooc.com"); if (openshit != null) { window.open(openshit, 'height=500,width=400,menubar=no,toolbar=no') } else { alert("badnews") } } else { alert("badnews") } }
都是些奇怪的错误。。。平时养成好习惯吧,一定要注意缩进!
添加回答
举报
0/150
提交
取消