tnblog
首页
视频
资源
登录

js 获取当天的年月日 包含0的格式,自动补0。js获取今日,昨日,前日

3622人阅读 2023/4/3 16:58 总访问:430964 评论:0 收藏:0 手机
分类: 前端

代码如下:

  1. var date = new Date() // 获取时间
  2. var year = date.getFullYear() // 获取年
  3. var month = date.getMonth() + 1 // 获取月
  4. var strDate = date.getDate() // 获取日
  5. // 自动补0
  6. if (month >= 1 && month <= 9) {
  7. month = "0" + month;
  8. }
  9. if (strDate >= 0 && strDate <= 9) {
  10. strDate = "0" + strDate;
  11. }
  12. let typeDayValue = ''
  13. //今日
  14. if (this.typeDay == "today") {
  15. typeDayValue = year + "-" + month + "-" + strDate;
  16. }
  17. //昨日
  18. if (this.typeDay == "yesterday") {
  19. typeDayValue = year + "-" + month + "-" + (strDate - 1);
  20. }
  21. //前日
  22. if (this.typeDay == "beforeYesterday") {
  23. typeDayValue = year + "-" + month + "-" + (strDate - 2);
  24. }

上面的只有当天的日期,会补零,昨日前日要补零还是要加一个方法

  1. mounted() {
  2. var date = new Date() // 获取时间
  3. var year = date.getFullYear() // 获取年
  4. var month = date.getMonth() + 1 // 获取月
  5. var strDate = date.getDate() // 获取日
  6. // 自动补0
  7. // if (month >= 1 && month <= 9) {
  8. // month = "0" + month;
  9. // }
  10. // if (strDate >= 0 && strDate <= 9) {
  11. // strDate = "0" + strDate;
  12. // }
  13. let typeDayValue = ''
  14. //今日
  15. if (this.typeDay == "today") {
  16. typeDayValue = year + "-" + this.addZero(month) + "-" + this.addZero(strDate);
  17. }
  18. //昨日
  19. if (this.typeDay == "yesterday") {
  20. typeDayValue = year + "-" + this.addZero(month) + "-" + this.addZero(strDate - 1);
  21. }
  22. //前日
  23. if (this.typeDay == "beforeYesterday") {
  24. typeDayValue = year + "-" + this.addZero(month) + "-" + this.addZero(strDate - 2);
  25. }
  26. this.typeDayStr = typeDayValue
  27. this.GetLabroomLearnActivityDetails(typeDayValue, 1)
  28. this.getLearnActivityDetails(typeDayValue, 1)
  29. this.GetEvalLearnActivityDetails(typeDayValue, 1)
  30. },
  31. // 组件方法
  32. methods: {
  33. // 自动补零
  34. addZero(val) {
  35. if (val >= 1 && val <= 9) {
  36. val = "0" + val;
  37. }
  38. return val
  39. }
  40. }
评价

js与Controller中分割字符串的方法

js: varstr=OpenRule; varstrs=newArray(); strs=str.split(&quot;,&quot;); for(vari=0;i&lt;strs.length;i++){ $(&q...

珍藏!! js CSS不传之秘集合

&lt;!--其中5指每隔5秒刷新一次页面--&gt; &lt;metahttp-equiv=&quot;refresh&quot;content=&quot;5&quot;&gt; =========...

jsON对象和jsON字符串的区别

JSON对象是直接可以使用JQuery操作的格式,如C#中可以用对象(类名)点出属性(方法)一样var str2 = { &quot;name&quot;: ...

对象转jsON

/// &lt;summary&gt; /// 对象转json /// &lt;/summary&gt; public static string ToJson(object jsonObject) ...

来!!!今天玩 json

别怪我懒,其实我是真的懒///&lt;summary&gt; ///List转成json ///&lt;/summary&gt; ///&lt;typeparamname=&quot;T&quot...

js遍历localStorage的键值对

//遍历本地存储localStorage for(vari=0;i&lt;localStorage.length;i++){ varkey=localStorage.key(i);//获取本地存储的K...

拓展js通用方法来对应c操作

有很多时候,js不能像c#一样有那样多的方法操作,但是我们可以自己写一些方法,让他拥有:比如最常见的一些:注意:js里的...

js的localStorage

localStorage的优势1、localStorage拓展了cookie的4K限制2、localStorage会可以将第一次请求的数据直接存储到本地,这个相...

js监听input、keydown有输入法时打字完成后触发事件

在给输入框绑定input或keydown事件时预期效果是有输入法时,输入中文后触发事件,不希望输一个字母就触发一次事件可以用到c...

js截取两个字符中间的字符串

使用正则表达式来取比如我们要取brush:js;toolbar:false 这个字符串冒号和分号中间的字符串可以varclassname=&quot;brush:j...

Vue.js+Layer实现表格数据绑定与更新

一:使用Vue.js绑定好数据与更新事件 使用v-on绑定好事件,在事件里边直接把该行数据传递进去,在更新方法里边就可以直接...

js使用正则进行常用验证

?:问号前面的数字匹配0次或1次,也就是懒惰匹配,最多匹配一次+:匹配1次到无穷次*:匹配0次到无穷次验证只能:数字、字母...

js字符串的替换

vartitle=&quot;我是你的大表哥&quot;; title=title.replace(&quot;大表哥&quot;,&quot;大表妹&quot;); alert(title);输...

Vue.js 实现省市联动

HTML代码&lt;divid=&quot;pro_citys&quot;&gt; 省:&lt;selectid=&quot;provice&quot;v-on:change=&quot;prochange()&quo...

Vue.js常见问题

一:花括号当做字符串显示的问题1:检查下绑定到vue.js的id是否重复,如果id重复了,就有可能存在这种问题,因为有可能把数...

vue.js常用指令

v-html可以把字符串当成一个html来渲染,而不是原样输出Html类似.net mvc中的@Html.Raw()方法&lt;divv-html=&quot;item.tit...
吃亏决不亏,惜福才有福
排名
12
文章
74
粉丝
4
评论
15
ASP.NET中webform中的几个生命周期函数
修心 : 什么周期除了这些还有什么呢
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术
记得当时年纪小,你爱卖萌我爱笑。