不知道为什么弹不出来。。。。。。。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<script type="text/script" src="script.js"></script><!--引入外部文件的方式-->
</head>
<body>
<input type="button" value="点我" onclick="txt()"/>
</body>
</html>
//多行注释
/*我是多行注释!
我需要隐藏,
否则会报错哦!*/
//页面中弹出提示框
document.write("系好安全带,准备启航--目标JS"+"<br>"); //在页面中显示文字
//单行注释 我是单行注释,我也要隐藏起来!
function txt(){
var ready=confirm("准备好了么");
if(ready==true){
alert("准备好了,起航吧!");
}
else{
alert("继续加油!");
}
}
求大佬赐教