存储数据的格式:json,xml
var a = 10;
var b = 20;
[10,20];
key-value形式
var json = {
'a': 10,
'b': 20,
'c': 30,
'name': '小明',
'sex': ['女', '男', '人妖'],
'show': function () {alert(1)}
}
json的是通过下标取数据,下标是字符串.
json.age = 18;添加新元素;
delete json.sex;删除;
var date = new Date();创建时间对象
gitTime():表示距离1970.1.1.0.0.0的时间差(单位是毫秒)
date.getFullYear();获取年份
date.getMonth();获取月份
date.getDate();获取日
date.getDay();星期
date.getHours();时
date.getMinutes();分
date.getSeconds();秒
date.getMilliseconds();毫秒
定时器
setInterval('循环执行的事件'.间隔时间(毫秒));
var time = setInterval(function(){
console.log(6666);
},1000);
console.log(time);
倒计时,
clearInterval(time);根据特定标识清除对应定时器
递归调用
var time = setTimeout(function show(){
var time = setTimeout(function(){
show();
},3000);
console.log(time);
},3000);