<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript">
document.write("系好安全带,准备启航--目标JS。"+"/br")
function tip(){
var txt=confirm("你准备好了吗?");
if(txt==true){
document.write("准备好了,起航吧!");
}
else{
document.write("你还没有准备好,请学习JS入门篇") ;
}
}
//多行注释
/* 我是多行注释!
我需要隐藏,
否则会报错哦!*/
//在页面中显示文字
//页面中弹出提示框
//单行注释
// 我是单行注释,我也要隐藏起来!
</script>
</head>
<body>
<input type="button" value="试一试" onclick="tip()">
<button onclick="tip.alertWord() ">接着学习试一试</button>
</body>
</html>