zoukankan      html  css  js  c++  java
  • js时间转换,能够把时间转换成yyyymmdd格式或yyyymm格式



    //type为1则转换成yyyymmdd格式,type为2则转换成yyyymm格式

    function formatTime(time,type){
    var temp_time=new Number(time);
    var temp_date=new Date(temp_time);
    var temp_year1="";
    var temp_month1="";
    var temp_day1="";
    if(type==1){
    temp_year1=temp_date.getFullYear();
    temp_month1=(temp_date.getMonth()+1)>9?(temp_date.getMonth()+1):"0"+(temp_date.getMonth()+1);
    temp_day1=(temp_date.getDate())>9?(temp_date.getDate()):"0"+(temp_date.getDate());
    return temp_year1.toString()+temp_month1.toString()+temp_day1.toString();
    }else if(type==2){
    temp_year1=temp_date.getFullYear();
    temp_month1=(temp_date.getMonth()+1)>9?(temp_date.getMonth()+1):"0"+(temp_date.getMonth()+1);
    return temp_year1.toString()+temp_month1.toString();
    }
    }

    该代码来自百度知道:842366175 |四级采纳率52%

    请测试后使用。

  • 相关阅读:
    SVN版本控制服务
    JVM内存结构
    Git的使用
    Nginx详解
    Apache(httpd)详解
    rsyslog日志收集器
    nsswitch名称解析框架
    NFS网络文件系统
    ThreadLocal详解
    RocketMQ踩坑记
  • 原文地址:https://www.cnblogs.com/flying607/p/3328785.html
Copyright © 2011-2022 走看看