大神帮忙看下
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
<script type="text/javascript">
function wopen(){
var nline;
var oline=prompt();
nline=confirm("确定要打开")
if(nline)
{
window.open(oline,'_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
</script>
</head>
<body>
<input name="bt" type="button" onclick="wopen" value="点击我试试">
</body>
</html>
帮忙看下,为什么点击“点击我试试”没有反应呢