想要用confirm弹窗选择打开或者关闭网页,帮我看下下面的代码哪里有问题,点击按钮没有弹窗。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>close()</title>
<script type="text/javascript">
function xuanze()
{
var mywin=confirm("你想要打开这个网页么?");
if(mywin==true)
{window.open("http://www.imooc.com");}
else
{window.close("http://www.imooc.com");}
}
</script>
</head>
<body>
<form>
<input name="dakai" type="button" onClick="xuanze" value="点击打开弹窗" >
</form>
</body>
</html>
onClick="xuanze()"
你选择之后点击否,就根本没有打开过网页何来关闭一说?
onClick="xuanze"
这个onclick应该是小写
应该是onClick="xuanze()"
自己回答好了 原来是在调用函数的时候忘了加()
应该是onClick="xuanze()"