哪位大神给看看什么问题?
<script type="text/javascript">
/*多行注释
我是多行注释!
我需要隐藏,
否则会报错哦!*/
//在页面中显示文字
document.write("系好安全带,准备起航--目标JS");
alerta("准备好了吗?起航吧!");
//页面中弹出提示框
//单行注释
// 我是单行注释,我也要隐藏起来!
function con(){
var mytiao=confirm("你准备好了吗?");
if("mytiao==true"){
document.write("我们起航吧!");
}
else{
document.write("那就稍等一会。");
}
}
</script>
</head>
<body>
<input type="button" value="按钮" onclick="con()">;
</body>
</html>