刘浩霖
2018-08-03 14:58
我哪里错了啊
if(url!=null){window.open('http://www.baidu.com','-black','width=400,height=500,menubar=no,toolbar=mo');} 你这样只会永远打开baidu页面,如果你不输入,那只有默认网页,但是还是会打开百度页面
open 是一个函数不能这样命名 你随便换一个
<title>
ll</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<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.baidu.com"}
if(url!=null){window.open('http://www.baidu.com','-black','width=400,height=500,menubar=no,toolbar=mo');}
else{ alert("再见"); } } </script> </head> <body>
<input type="button" value="新窗口打开网站" onclick="openwindow()" /> </body></html>
var 后面不可以设置open 是关键字把
复制清楚点 ,表达清楚点
JavaScript入门篇
740086 学习 · 9566 问题
相似问题