标签:
js写在<script type="javascript"></script>
<script type="javascript"></script>在哪都可以放,一般放在</html>后面
三个常用的对话框:
alert("出现错误");警告对话框
confirm("确定退出吗?"); 点击确定反悔ture,点击取消返回flase 点击红叉不返回东西
prompt("输个数字进来把","只能是数字");后面的是默认值
javascript语法:
1、数据类型:字符串、小数、整数、日期时间、布尔型等
2、变量:var通用类型 数据类型转换var s = "3.14"; var n = parseFloat(s); ; s += 5;var d = parseInt(s);
3、运算符:算术运算符、关系运算符、逻辑运算符
4、语句:顺序、分支、循环
5、数组:定义:var a = new Array(); 赋值:a[0] = 1; 长度:a.length;排序:a.sort();
6、函数:function 函数名(参数){函数体}
6.1函数调用:函数名(参数);
语句:
document.write("hello world");在页面显示hello world
onclick=‘alert("这是触发事件")‘ 单机事件可以是方法function
document.getElementById("hello") 通过id找到元素
标签:
原文地址:http://www.cnblogs.com/yongjiapei/p/5468312.html