concat();//连接两个或更多的数组哦
join('_');//把数组的所有元素放在一个字符串中
pop();//删除并返回数组的最后一个元素
push();//向数组的末尾添加一个元素,并返回数组长度
shift();//删除并返回数组的第一个元素
slice();//返回已选定的元素
sort();//对数组的元素进行排序
splice();//删除元素,并向数组添加新元素
toString();//把数组转换为字符串,并返回结果
indexOf();//方法来判断数组中一个元素是否存在的方法
location.href='http://localhost:8080/legolas/IDE/application/accountManagement_run.html';
window.open ('http://localhost:8080/legolas/IDE/application/accountManagement_run.html');
for(var p in object){
//p为属性名称,object[p]为对应属性的值
console.log(p,object[p]);
}
var string = JSON.stringify(object);
var object = JSON.parse(string);
alert("文本");
confirm("文本");
prompt("文本","默认值");
parsInt(num);//丢弃整数部分
Math.round(num);//四色五入
Math.fool(num);向下取整
Math.abs(num);//取绝对值
var myDate = new Date();
myDate.getYear(); //获取当前年份(2位)
myDate.getFullYear(); //获取完整的年份(4位,1970-????)
myDate.getMonth(); //获取当前月份(0-11,0代表1月)ddd
myDate.getDate(); //获取当前日(1-31)d
myDate.getDay(); //获取当前星期X(0-6,0代表星期天)
myDate.getTime(); //获取当前时间(从1970.1.1开始的毫秒数)
myDate.getHours(); //获取当前小时数(0-23)
myDate.getMinutes(); //获取当前分钟数(0-59)
myDate.getSeconds(); //获取当前秒数(0-59)
myDate.getMilliseconds(); //获取当前毫秒数(0-999)
myDate.toLocaleDateString(); //获取当前日期
var mytime=myDate.toLocaleTimeString(); //获取当前时间
myDate.toLocaleString(); //获取日期与时间
var str = "0123456789";
str.substring(2,2);//----------""
str.substr(2,2);//--------------"23"
typeof value
var id = window.setTimeout(callback,10,1,2,4);
function callback(i,j,k){
alert(i+j+k);
clearTimeout(id);
}