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

本文共 447 字,大约阅读时间需要 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;}

.

转载地址:http://zxwox.baihongyu.com/

你可能感兴趣的文章
【二叉树系列】二叉树课程大作业
查看>>
买台式电脑还是笔记本好?
查看>>
UILable文字不居中问题
查看>>
近期window7x64 打补丁之后IE11x64无法启动
查看>>
JDBC与ORM发展与联系 JDBC简介(九)
查看>>
第一个Mybatis程序示例 Mybatis简介(一)
查看>>
确保 PHP 应用程序的安全
查看>>
Python单元测试框架Pyunit 的使用
查看>>
基于linux服务器的性能分析与优化
查看>>
Cocos2d-xna : 横版战略游戏开发实验5 TiledMap实现关卡地图
查看>>
LDAP 配置 ldap_bind: Invalid credentials (49)
查看>>
Windows 7 Natvie VHD
查看>>
Python JS Jquery Json 转换关系
查看>>
重启jboss出现问题:端口被占用
查看>>
SpringMVC下的基本配置
查看>>
RedHat/CentOS系统信息查看命令大全
查看>>
Apache用户认证、域名跳转、Apache访问日志
查看>>
程序注释应该注意的地方
查看>>
tomcat+SSH中遇到中文乱码的解决方法
查看>>
Eclipse错误提示: Symbol 'xxxx' could not be resolved
查看>>