JS绑出来的时间怎么从新格式化?
发布网友
发布时间:2022-04-23 06:06
我来回答
共1个回答
热心网友
时间:2022-04-23 07:36
<script>function show(){var date = new Date(); //日期对象
var now = "";now = date.getFullYear()+"-"; //读英文就行了
now = now + (date.getMonth()+1)+"-";//取月的时候取的是当前月-1如果想取当前月+1就可以了
now = now + date.getDate()+" ";now = now + date.getHours()+":";
now = now + date.getMinutes()+":";
now = now + date.getSeconds()+"";
document.getElementById("nowDiv").innerHTML = now; //div的html是now这个字符串setTimeout("show()",1000); //设置过1000毫秒就是1秒,调用show方法}
</script>就是这段代码,
比如说取出今天的时间是2007-8-10 12:40:1
我要的日期格式是 2007-08-10 12:40:01