js Date 方法

  • toDateString()显示日期中的周几、月、日、年(格式特定于实现)
new Date(). toDateString() // "Fri Sep 20 2024"
  • toTimeString()显示日期中的时、分、秒和时区(格式特定于实现);
new Date(). toTimeString()  // "09:29:51 GMT+0800 (中国标准时间)"
  • toLocaleDateString()显示日期中的时、分、秒和时区(格式特定于实现);
new Date(). toLocaleDateString()  //  "2024/9/20"
  • toLocaleTimeString()显示日期中的时、分、秒和时区(格式特定于实现);
new Date(). toLocaleTimeString()  //  "09:31:30"
  • toUTCString()显示日期中的时、分、秒和时区(格式特定于实现);
new Date(). toUTCString()  // "Fri, 20 Sep 2024 01:32:05 GMT"
  • 日期/时间组件方法;
	getTime()                            //返回日期的毫秒表示;与 valueOf()相同
   	setTime(milliseconds)                             //设置日期的毫秒表示,从而修改整个日期
   	getFullYear()                            // 返回 4 位数年(即 2019 而不是 19)
   	getUTCFullYear()                             //返回 UTC 日期的 4 位数年
   	setFullYear(year)                             //设置日期的年(year 必须是 4 位数)
   	setUTCFullYear(year)                             //设置 UTC 日期的年(year 必须是 4 位数)
   	getMonth()                             //返回日期的月(0 表示 1 月,11 表示 12 月)
   	getUTCMonth()                             //返回 UTC 日期的月(0 表示 1 月,11 表示 12 月)
   	setMonth(month)                             //设置日期的月(month 为大于 0 的数值,大于 11 加年)
   	setUTCMonth(month)                             //设置 UTC 日期的月(month 为大于 0 的数值,大于 11 加年)
   	getDate()                             //返回日期中的日(1~31)
   	getUTCDate()                             //返回 UTC 日期中的日(1~31)
   	setDate(date)                            // 设置日期中的日(如果 date 大于该月天数,则加月)
   	setUTCDate(date)                            // 设置 UTC 日期中的日(如果 date 大于该月天数,则加月)
   	getDay()                             //返回日期中表示周几的数值(0 表示周日,6 表示周六)
   	getUTCDay()                             //返回 UTC 日期中表示周几的数值(0 表示周日,6 表示周六)
   	getHours()                             //返回日期中的时(0~23)
   	getUTCHours()                             //返回 UTC 日期中的时(0~23)
   	setHours(hours)                            // 设置日期中的时(如果 hours 大于 23,则加日)
   	setUTCHours(hours)                          //  设置 UTC 日期中的时(如果 hours 大于 23,则加日)
   	getMinutes()                          //  返回日期中的分(0~59)
   	getUTCMinutes()                           // 返回 UTC 日期中的分(0~59)
   	setMinutes(minutes)                           // 设置日期中的分(如果 minutes 大于 59,则加时)
   	setUTCMinutes(minutes)                           // 设置 UTC 日期中的分(如果 minutes 大于 59,则加时)
   	getSeconds()                           // 返回日期中的秒(0~59)
   	getUTCSeconds()                           // 返回 UTC 日期中的秒(0~59)
   	setSeconds(seconds)                           // 设置日期中的秒(如果 seconds 大于 59,则加分)
   	setUTCSeconds(seconds)                           // 设置 UTC 日期中的秒(如果 seconds 大于 59,则加分)
   	getMilliseconds()                           // 返回日期中的毫秒
   	getUTCMilliseconds()                           // 返回 UTC 日期中的毫秒
   	setMilliseconds(milliseconds)                           // 设置日期中的毫秒
   	setUTCMilliseconds(milliseconds)                           // 设置 UTC 日期中的毫秒
   	getTimezoneOffset()                           // 返回以分钟计的 UTC 与本地时区的偏移量(如美国 EST 即“东部标准时间” 返回 300,进入夏令时的地区可能有所差异)
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值