var a="hello world"get
1,a.chartAt(1);//estring
2,a.substring(1,8)開始位置(非必須),結束位置//ello wordate
3,a.substr(1,4)開始位置,個數(非必須)//ellochart
4,a.indexof("e",4)查找的字符,開始查找的位置(非必須)//0時間
a.indexof("o")查找的字符,開始查找的位置(非必須)//4,查找「o」第一次出現的位置co
日期date操做字符
var b=new Date();new
1,b.getFullYear()//獲取當前年份日期
2,b.getMonth()+1//獲取當年月份index
3,b.getDate()//獲取當前日期
4,b.getHours()//獲取當前時間
5,b.getMinutes()//獲取當前分鐘
6,b.getSeconds()//獲取當前毫秒