码迷,mamicode.com
首页 > 其他好文 > 详细

math date

时间:2016-05-29 21:14:32      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

math对象 并不是对象,所以不能构造对象
PI 返回圆周率 Math.PI
方法:
ceil() 方法可对一个数进行上舍入。 接近比他大的整数

floor() 方法可对一个数进行下舍入。

max() 方法可返回两个指定的数中带有较大的值的那个数。

min() 方法可返回指定的数字中带有最低值的数字。

random() 方法可返回介于 0 ~ 1 之间的一个随机数。 返回值 0.0 ~ 1.0 之间的一个伪随机数。

round() 方法可把一个数字舍入为最接近的整数。 四舍五入 eg:2.54 使用该方法是3 -2.54使用该方法是2

Date() 对象
Date() 返回当日的日期和时间。
getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。
getMonth() 从 Date 对象返回月份 (0 ~ 11)。
getFullYear() 从 Date 对象以四位数字返回年份。
getHours() 返回 Date 对象的小时 (0 ~ 23)。
getMinutes() 返回 Date 对象的分钟 (0 ~ 59)。
getSeconds() 返回 Date 对象的秒数 (0 ~ 59)。
getMilliseconds() 返回 Date 对象的毫秒(0 ~ 999)。
setDate() 设置 Date 对象中月的某一天 (1 ~ 31)。
setMonth() 设置 Date 对象中月份 (0 ~ 11)。
setFullYear() 设置 Date 对象中的年份(四位数字)。
setHours() 设置 Date 对象中的小时 (0 ~ 23)。
setMinutes() 设置 Date 对象中的分钟 (0 ~ 59)。
setSeconds() 设置 Date 对象中的秒钟 (0 ~ 59)。
setMilliseconds() 设置 Date 对象中的毫秒 (0 ~ 999)。

获取时间

var i=new Date();
var a= i.getFullYear();
var b= i.getMonth()+1;
var c= i.getDate();
var d= i.getHours();
var e= i.getSeconds();

var f= i.getMilliseconds();
document.write(a+"年"+b+"月"+c+"日"+d+"点"+e+"分"+f+"毫秒");

设置时间
var d = new Date();
d.setFullYear(1992);
d.setMonth(2)+1;
d.setDate(12);
d.setHours(14);
d.setMinutes(29);
d.setSeconds(06);
document.write(d);

 

math date

标签:

原文地址:http://www.cnblogs.com/yanghuan123/p/5540155.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!