红枣豆浆
2017-07-11 14:26
<script type="text/JavaScript">
document.write("系好安全带,准备起航--目标JS")
function go()
{
var a1=confirm("准备好了吗?")
if(a1==true))
{
alert("准备好了,起航吧!");
}
else(a1==false)
{
alert("加油!");
}
}
</script>
</head>
<body>
<input="button" value="GO" onClick="go()">
</body>
</html>
="button">在第一个判断那儿多打了个结束括号
if(a1==true)) 多了一个括号,还有,顺便把语句的分号都加上吧,养成好习惯!
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题