代码是否出错?为什么不能执行?
<script type="text/javascript">
function.openWindow()
{
var TanChuang=confirm("是否打开新窗口?")
if(TanChuang==true)
{
var url=prompt("请输入网址:","http://www.imooc.com/")
if(url!=null)
{window.open(url,'_blank','width=400px,height=500px,menubar=no,toolbar=no');}
else{alert("内容不能为空!")}
}
else{document.write("已取消")}
}
</script>