这样写为什么按钮没有反应
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript">
document.write("系好安全带,准备启航--目标JS");
function:con()
{
var mychar=confirm("准备好了吗")
if (mychar==true)
{
document.write("gongxini");
}
else
{document.write("sb");}}
</script>
</head>
<body>
<input type="button" value="dianwo" onclick="con()">
</body>
</html>