代码写出来了但显示不了效果,不知道哪出问题了?求指点:
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html,charset=utf-8"/>
<script type="text/javascript">
function openWidow(){
// 新窗口打开时弹出确认框,是否打开
var input=confirm("确认打开?");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(input==ture){
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open('http://www.imooc.com/','_blank','menubar=no,scrollbars=yes,toolbar=no,status=no')
}else
{ alert("null");
}
openWidow();
}
</script>
</head>
<body>
<input name="button" type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>