vue 时间组件

vue 时间组件_第1张图片
image.png

今天在自己写时间组件时遇见的问题
1 如何设置时间

var d2 = new Date(2008, 10 - 1, 1);
     console.log(d2.toLocaleString() + "
"); 2008/10/1 上午12:00:00

2正则的运用

input_str.split(/[\s\n]/)

let reg =/[\u4e00-\u9fa5]/g;
    let comm=alldatas
    let tm=comm.split(reg)

3 原文代码









参考文章
正则地址
js时间的几种设置方式
原文地址
1 https://www.cnblogs.com/durenlong/p/7754862.html
2https://blog.csdn.net/u011043843/article/details/29435497
3https://blog.csdn.net/lanseyuanwei2/article/details/51956520
4https://blog.csdn.net/LXY_Fighting/article/details/79294237
6纯数字键盘H5文章
https://wuwhs.github.io

你可能感兴趣的:(vue 时间组件)