• js格式化日期 年月日


        /**
                         * 格式化日期
                         * @param value
                         * @param row
                         * @param index
                         * @returns
                         */
                        function valueFormatterDate(value,row,index){
                            var time = new Date();
                            if(value){
                                if((value+"").indexOf("-")>0){
                                    value=/d{4}-d{1,2}-d{1,2}/g.exec(value);
                                    return value;
                                }
                                time = new Date(value);
                            }
                            var year=time.getFullYear();
                            var month = time.getMonth() + 1;  
                            var day = time.getDate();
                            if(month<10){
                                month="0"+month;
                            }
                            
                            if(day<10){
                                day="0"+day;
                            }
                            
                            return year+"-"+month+"-"+day;
                        }
                       

  • 相关阅读:
    数据库权限分配操作
    1130-host ... is not allowed to connect to this MySql server
    ubuntu 14.04安装mysql-python
    Ubuntu中的MySQL修改root密码的多种方法
    ubuntu下安装mysql及卸载mysql方法
    XShell本地上传文件到Ubuntu上及从Ubuntu下载文件到本地
    深度学习-1
    html-新闻滚动条
    Django部署uwsgi 与 nginx配置
    二叉树层次遍历
  • 原文地址:https://www.cnblogs.com/ckaifeng/p/5025818.html
Copyright © 2020-2023  润新知