用confirm为什么不会弹出对话框??
<!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 rst=confirm("是否打开网址");
if(rst==true)
{ window.open('http://www.imooc.com','_blank',width=400,height=500
menubar=no,toolbar=no);
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onClick="openWindow()" />
</body>
</html>
//为什么我的会运行不了,有点不懂大家这么都在用prompt,我这个地方用的是confirm