zoukankan      html  css  js  c++  java
  • Date时间

        var date_obj= new Date();
        alert(date_obj.toLocaleString()) //2017/12/26 上午1:10:54
    
        var date_obj2= new Date("2016 3 23 12:20"); //2016-3-23 12:20; 2016/3/23 12:20(多种格式,只要分开就行)
        alert(date_obj2.toLocaleString()); //2016/3/23 下午12:20:00
    
    
        var date_obj3= new Date(5000); //距离1970年0点0分的时间(东八区),
        alert(date_obj3.toLocaleString()) //1970/1/1 上午8:00:05
        alert(date_obj3.toUTCString()) //Thu, 01 Jan 1970 00:00:05 GMT(格林尼治)
    
    function getTime() {
         var date_obj= new Date();
        console.log(date_obj.getFullYear());//获取整年
        console.log(date_obj.getMonth());//月份从0开始
        console.log(date_obj.getDate());//几日
        console.log(date_obj.getDay()); //对应星期几,从0开始,星期日
        console.log(date_obj.getHours());
        console.log(date_obj.getMinutes());
        console.log(date_obj.getSeconds());
        console.log(date_obj.getHourMinuteSecond);
        console.log(date_obj.getMilliseconds());//获取毫秒
        var year=date_obj.getFullYear();
        var month=date_obj.getMonth()+1;
        var day=date_obj.getDate();
        var hour=date_obj.getHours();
        var minute=date_obj.getMinutes();
        var seconds=date_obj.getSeconds();
        var week=date_obj.getDay();
    
    
        return year+"年"+month+"月"+f(day)+"日"+" "+hour+": "+minute+" :"+seconds+" "+num_week(week)
    }
        //Date方法:
        alert(getTime());
        function f(num) {
            if (num<10){
                 return "0"+num;
            }
            return num;
        }
        function num_week(n) {
            week=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"];
            return week[n]
        }
    
    
    //    2016年 11月 08日 15:02 星期二
    
         var date_obj= new Date();
        alert(date_obj.getTimezoneOffset()) //8个时区×15度×4分/度=480;
  • 相关阅读:
    判断微信浏览器
    文章迁移
    ECharts使用—折线图动态加载
    vue-cli入门
    gulp使用详解
    gulp使用入门
    Chrome扩展插件流程
    div界面元素生成图片
    xss攻击与防御
    bootstrap-table使用详解
  • 原文地址:https://www.cnblogs.com/jiefangzhe/p/8112396.html
Copyright © 2011-2022 走看看