为什么提示没有定义
<head> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> <script type="text/javascript"> function rec(){ var xgo = confirm("是否打开?") ; if(xgo== true) { document.write('123'); } else { document.write("123"); } } </script> </head> <body> ; <input name="button" type="button" onClick="rec()" value="新窗口打开网站" /> </body> </html>