//获取时间 var time = new Date(); //获取年份 var year = time.getFullYear(); //获取月份 从0开始算 var month = time.getMonth()+1; //获取月份里的第几天 var date = time.getDate(); ...
分类:
Web程序 时间:
2021-06-04 19:09:54
阅读次数:
0
1 function timeChange(time) { 2 var date = new Date(time);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 3 var Y = date.getFullYear() + '-'; 4 var M = (date.getMont ...
分类:
其他好文 时间:
2021-03-31 12:19:55
阅读次数:
0
const current = new Date().getFullYear() + '-' + (new Date().getMonth() + 1) + '-' + new Date().getDate() + '-' + new Date().getHours() + ':' + new Da ...
分类:
其他好文 时间:
2021-03-08 13:32:22
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi ...
分类:
编程语言 时间:
2021-03-04 13:25:22
阅读次数:
0
/** * 获取当前时间 */ function getDate() { var date = new Date(); var year = date.getFullYear(); // 年 var month = formatTime(date.getMonth() + 1); // 月 var ...
分类:
编程语言 时间:
2021-02-22 11:49:28
阅读次数:
0
VBA采用Application.OnTime实现计时器,代码如下: Public RunWhen As Double Public Const cRunIntervalSeconds = 120 ' two minutes Public Const cRunWhat = "TheSub" ' th ...
分类:
其他好文 时间:
2021-01-20 12:10:43
阅读次数:
0
问题描述: 安装微软应用商店里的ubuntu完成后,双击打开,出现如下报错: Installing, this may take a few minutes... WslRegisterDistribution failed with error: 0x80370102 Error: 0x80370 ...
分类:
其他好文 时间:
2021-01-12 11:11:00
阅读次数:
0
只需要 toHHmmss(时间戳)即可 function toHHmmss (data) { var time; var hours = parseInt((data % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = parseI ...
分类:
其他好文 时间:
2021-01-11 11:07:41
阅读次数:
0
Docker Secret 在我们启动docker或者service需要指定密码,这种密码我们有时不想被别人知道,所以可以采用docker secret方式管理。创建secret可以有两种方式,一种通过文件创建,一种通过命令行创建我们在本地创建一个文件passwd zack1024 接下我们可以通过 ...
分类:
其他好文 时间:
2020-12-28 11:51:34
阅读次数:
0
这篇文章主要介绍了CSS3 实现倒计时效果的示例代码,帮助大家更好的理解和使用CSS3,感兴趣的朋友可以了解下 实现效果 html 1 %div.wrapper 2 %div.time-part-wrapper 3 %div.time-part.minutes.tens 4 %div.digit-w ...
分类:
Web程序 时间:
2020-11-25 13:01:13
阅读次数:
24