美文网首页
js中获取时间new Date()总结

js中获取时间new Date()总结

作者: 辣瓜瓜 | 来源:发表于2017-11-24 14:19 被阅读543次

    最近又用到了,整理一份,方便取用。

    将字符串形式的日期转换成日期对象

    var strTime = "2017-11-16"; //字符串日期格式           
    var date = new Date(Date.parse(strTime.replace(/-/g, "/")));  //转换成Data();
    console.log(typeof date); //object
    var month = date.getMonth() + 1; //获取当前月份
    

    获取时间

    var myDate = new Date();//获取的是本机时间
    console.log( myDate.getYear());
    //在IE8以下中是可以正确获取年份2017,但是在IE8以上和其他浏览器下则为:117。
    //因为在浏览器内 getYear 返回的是 "当前年份-1900" 的值,IE则是直接将1900加上了,返回的 2017。
    console.log("获取完整的年份(4位)---" + myDate.getFullYear()); //可正确获取年份
    console.log("获取当前月份(0-11)---" + myDate.getMonth()); //0代表1月
    console.log("获取当前日(1-31)---" + myDate.getDate());
    console.log("获取当前星期X(0-6---" + myDate.getDay()); //0代表星期天
    console.log("获取当前时间(从1970.1.1开始的毫秒数)---" + myDate.getTime());
    console.log("获取当前小时数(0-23)---" + myDate.getHours());
    console.log("获取当前分钟数(0-59)---" + myDate.getMinutes());
    console.log("获取当前秒数(0-59)---" + myDate.getSeconds());
    console.log("获取当前毫秒数(0-999)---" + myDate.getMilliseconds());
    console.log("获取当前日期---" + myDate.toLocaleDateString());
    console.log("获取当前时间---" + myDate.toLocaleTimeString());
    console.log("获取日期与时间---" + myDate.toLocaleString());
    
    输出结果

    获取当前时间戳

    console.log(new Date().valueOf());//1511492074171
    console.log(new Date().getTime());//1511492074171
    console.log(Date.parse(new Date())); //1511492074000    
    // 获取的时间戳把毫秒改成了000显示,不准确
    

    相关文章

      网友评论

          本文标题:js中获取时间new Date()总结

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