博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
获取当前时间 YYYY-MM-DD
阅读量:6587 次
发布时间:2019-06-24

本文共 501 字,大约阅读时间需要 1 分钟。

1.函数封装

/** * 获取当前时间 * 格式YYYY-MM-DD */Vue.prototype.getNowFormatDate = function() {  var date = new Date();  var seperator1 = "-";  var year = date.getFullYear();  var month = date.getMonth() + 1;  var strDate = date.getDate();  if (month >= 1 && month <= 9) {    month = "0" + month;  }  if (strDate >= 0 && strDate <= 9) {    strDate = "0" + strDate;  }  var currentdate = year + seperator1 + month + seperator1 + strDate;  return currentdate;}

.

转载于:https://www.cnblogs.com/crazycode2/p/8830560.html

你可能感兴趣的文章
[BZOJ3312][USACO]不找零(状压DP)
查看>>
gtp转换mbr
查看>>
poj1985 求树的直径
查看>>
适配器模式(数据库方面)支持不同的数据库连接
查看>>
CF456B Fedya and Maths 找规律
查看>>
转载:Beginning WF 4.0翻译——第三章(流程图工作流)
查看>>
芯片测试
查看>>
在源代码中插入防止盗版代码片段的方式
查看>>
ffserver联合ffmpeg建立媒体服务器
查看>>
微软URLRewriter.dll的url重写的简单使用(实现伪静态)
查看>>
leetcode -- Combination Sum II
查看>>
Navicat for MySQL 使用SSH方式链接远程数据库(二)
查看>>
poj 1274The Perfect Stall
查看>>
HDU 4720 Naive and Silly Muggles (外切圆心)
查看>>
scrapy爬虫框架实例一,爬取自己博客
查看>>
手把手教你通过Thrift 访问ApsaraDB for HBase
查看>>
Vue+webpack+Element 兼容问题总结
查看>>
复杂recyclerView封装库
查看>>
见微知著 —— Redis 字符串内部结构源码分析
查看>>
Command './js-ant' failed to execute
查看>>