请帮我看一下我的代码可不可以简单一点
下面是我的代码,感觉有些步骤可以去掉的样子。
<!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 open=confirm("是否打开");
if(open==true)
{
var login=prompt("请输入网址")
if(login!==null)
{window.open(login,'_blank','width=400,height=500,menubar=no,toolbar=no')}
else
{}
}
else
{}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>