JavaScript中日期函数的相关操作知识

时间:2021-05-26

时间对象是一个我们经常要用到的对象,无论是做时间输出、时间判断等操作时都与这个对象离不开。除开JavaScript中的时间对象外,在VbScript中也有许多的时间对象,而且非常好用。下面还是按照我们的流程来进行讲解JavaScript中日期函数。

new Date()

new Date(milliseconds)

new Date(datestring)

new Date(year, month)

new Date(year, month, day)

new Date(year, month, day, hours)

new Date(year, month, day, hours, minutes)

new Date(year, month, day, hours, minutes, seconds)

new Date(year, month, day, hours, minutes, seconds, microseconds)

下面对

1.new Date(),没有参数的时候,创建的是当前时间日期对象。

2.new Date(milliseconds),当参数为数字的时候,那么这个参数就是时间戳,被视为毫秒,创建一个距离1970年1月一日指定毫秒的时间日期对象。

3.new Date(datestring),此参数是一个字符串,并且此字符串一定能够使用Date.parse()转换。

4.以下六个构造函数是精确定义:

  1).year,是一个整数,如果是0-99,那么在此基础上加1900,其他的都原样返回。

  2).month,是一个整数,范围是0-11。

  3).day,是一个整数,范围是1-31。

  4).hours,是一个整数,范围是0-23。

  5).minutes,是一个整数,范围是0-59。

  6).seconds,是一个整数,范围是0-59。

  7).microseconds 是一个整数,范围是0-9999。

<html><head><title>时间戳转化为年月日时分秒</title><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head><body></body></html><script>window.onload=function(){var now=new Date();//当前系统时间 var shijianchuo = now.getTime();//获取当前时间戳alert("时间戳:"+shijianchuo);var nowdate = new Date(shijianchuo);//将时间戳转化为日期对象var nowtime=nowdate.Format("yyyy-MM-dd hh:mm:ss");//格式化当前系统时间,相当于将时间戳转化为年月日时分秒了alert("当前时间:"+nowtime);}Date.prototype.Format = function (fmt) { var o = {"M+": this.getMonth() + 1, //月 "d+": this.getDate(), //日 "h+": this.getHours(), //时 "m+": this.getMinutes(), //分 "s+": this.getSeconds(), //秒 "q+": Math.floor((this.getMonth() + 3) / 3), //季度 "S": this.getMilliseconds() //毫秒 };if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));for (var k in o)if (new RegExp("(" + k + ")").test(fmt)) fmt = fmt.replace(RegExp.$1, (RegExp.$1.length == 1) ?        (o[k]) : (("00" + o[k]).substr(("" + o[k]).length)));return fmt;}</script>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章