js时间代码
发布网友
发布时间:2022-04-24 05:13
我来回答
共5个回答
热心网友
时间:2022-04-22 11:19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>dateutil-js时间举例</title>
<!-- <script src="http://www.shicishu.com/down/dateutil-1.0.0.js"></script>-->
<script src="http://www.shicishu.com/down/dateutil-1.0.0.min.js"></script>
</head>
<body>
<script type="text/javascript">
console.log(getdate_WMdy_En());//Thurs.Sept.2, 2020
console.log(getdate_yMdhms_T());//2020-9-2 21:41:7
console.log(getdate_WyMdhms_C());//星期四 2020年9月2日 21时38分33秒
</script>
</body>
</html>
热心网友
时间:2022-04-22 12:37
自己判断 月 日。小于10的 前面加个 “0” 后面类似。
热心网友
时间:2022-04-22 14:12
<script type="text/javascript">
function setDigit(num,n){ //num:需要转换位数的参数;n:前面要几个0
var oNum = '';
oNum += num;
while(oNum.length < n){
oNum = '0' + oNum;
}
return oNum;
}
var now=new Date();
document.write(now.getFullYear()+"年"+setDigit((now.getMonth()+1),2)+"月"+setDigit(now.getDate(),2)+"日"+
setDigit(now.getHours(),2)+"时"+setDigit(now.getMinutes(),2)+"分"+setDigit(now.getSeconds(),2)+"秒");
</script>
热心网友
时间:2022-04-22 16:03
在加一个函数
var delet(int x)
{if x<=9<br/> then return "0"+x;<br/>else <br/> return x;<br/>}
热心网友
时间:2022-04-22 18:11
if(分钟<10){分钟+“0”}