1、注释
// 单行注释
/* / 多行注释
/! 多行注释
2、写法
a:<script>
alert("你好");
<script>
b:在标签里面写 <bottom onclick="alert('你好‘)">哈哈</bottom>
c:在 文本.js 里面写
alert(“这是一个外联的”);
引入:
<script type="text/javascript" scr="js/index.js><script>
3、对话框
alert(字符串); //警告框
confirm(“您确定您很帅吗?”) //确定框;有返回值 用var接收
var res=confirm("你确认吗");
alert(res);
prompt(“请输入您的年龄:”, “16(表示默认值)”) //输入框
var age=prjompt("请输入您的年龄:" ,“默认值”);
alert(age); //注意:返回值的字符串
判断类型
alert(typeof(age))