Window对象###
encodeURI
对汉字进行编码decodeURI
对encodeURI后的编码解码encodeURIComponent
编码 当提交的值中包含一些url中的敏感符号时,使用该方法对敏感符号编码.decodeURIComponent
解码
****注:全局对象的方法直接使用即可。****
Math###
(属性) PI
值为圆周率random
返回随机数 0~1之间的随机数 包括0不包括1round
返回值为四舍五入后的数值max/min
接收两个参数,比较之后返回最大/最小的那个pow
//计算参数1的参数2次方
alert(Math.max(1,2));//2
****注:Math属性内建对象==> 不需要创建实例,直接使用即可.。****
Date###
1.new Date() 获取当前时间
2.getFullYear() 获取年份
3.getMonth() 获取月份注意 1月份结果为0
4.getHours() 小时
5.getDate() 日期
6.getMinutes() 分钟
7.getSeconds() 获取秒
8.getTime() 获取毫秒值.
9.toLocaleString() 获取本地的时间格式字符串.
10.getDay();获得星期
****注:1.月份计数时是0~11月,所以要加1获得正常月份 2.星期计数是 0~6 .****