date&time

作者: 码农也会修真 | 来源:发表于2019-07-07 21:25 被阅读0次
var time = new Date(2019, 7, 23) // 创建一个日期对象
    // console.log(time)
// alert(Date.parse('6 / 13 / 2019')) // 月/日/年   // 1560355200000
//     // 方法接收一个表示日期的字符串参数,然后尝试根据这个字符串返回相应的毫秒数。

// // 如果不是标椎的日期格式就会返回NAN。
// alert(Date.parse()); //NaN
alert('toString:' + time.toString());
alert('toLocaleString:' + time.toLocaleString()) //按本地格式输出

toLocaleString(), toString() //这两个方法在不同浏览器显示的效果又不一样, 但不用担心,
// 这两个方法只是在调试比较有用, 在显示时间和日期上, 没什么价值。

var time = new Date()

document.write(time.getTime()) // 获取日期的毫秒数,和valueOf()返回值一样
document.write(time.setTime()) // 以毫秒数设置日期,会改变整个日期
document.write(time.getFullYear()) // 获取四位年份
document.write(time.setFullYear()) // 设置四位年份,返回的是毫秒数
document.write(time.getMonth()) // 获取月份
document.write(time.setMonth()) // 设置月份,返回的是毫秒数
document.write(time.getDate()) // 获取日期
document.write(time.setDate()) // 设置日期,返回毫秒数
document.write(time.getDay()) //返回星期几,0表示星期日,6表示星期六
document.write(time.setDay()) // 设置星期几,0表示星期日,6表示星期六
document.write(time.getHours()) // 返回小时
document.write(time.getHours()) // 设置小时
document.write(time.getMinutes()) // 返回分钟
document.write(time.setMinutes()) // 设置分钟
document.write(time.getSeconds()) // 返回秒数
document.write(time.setSeconds()) // 设置秒数
document.write(time.getMilliseconds()) // 返回豪秒数
document.write(time.setMilliseconds()) // 设置豪秒数

相关文章

  • date&time

    toLocaleString(), toString() //这两个方法在不同浏览器显示的效果又不一样, 但不用担...

  • Ruby:时间格式化

    本文记录ruby中常用到的时间格式的相关方法 获取Date&Time组件 格式化时间和日期 输出结果 时间格式化指...

网友评论

      本文标题:date&time

      本文链接:https://www.haomeiwen.com/subject/hxgihctx.html