这么写还有优化的空间吗
<!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 message=confirm("是否打开新网页?");
if(message==true)
{
window.open('http://www.imooc.com','_blank','width=400,height=500,top=100,left=0,toolbar=no,menubar=no');
}
else
{
return null;
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>