为什么点击按钮没反应呢?求大神指导
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
// 新窗口打开时弹出确认框,是否打开
var URL = "http://www.imooc.com/"
function openWinow(){
var aa = confirm("是否要跳转到其他页面")
if(aa==true){
prompt("请输入需要打开的网址",URL);
window.open(
'URL' '_blank','height=500,width=400,menubar=no,toolbar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>