js将当前时间格式化为年-月-日 时:分:秒

Posted Rainyn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js将当前时间格式化为年-月-日 时:分:秒相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Time</title>
</head>
<body>
<script type="text/javascript">
    var d=new Date();
    var year=d.getFullYear();
    var month=change(d.getMonth()+1);
    var day=change(d.getDate());
    var hour=change(d.getHours());
    var minute=change(d.getMinutes());
    var second=change(d.getSeconds());
    function change(t){
        if(t<10){
          return "0"+t;
        }else{
          return t;
        }
    }
    var time=year+-+month+-+day+ +hour+:+minute+:+second;
    document.write(time);
</script>
</body>
</html>

 

以上是关于js将当前时间格式化为年-月-日 时:分:秒的主要内容,如果未能解决你的问题,请参考以下文章

如何在 SQL Server中 将日期格式化

如何在 SQL Server中 将日期格式化

怎么将日期转成字符串 C# 年-月-日-时-分-秒

js页面里时间戳转日期

Java 获取各时区时间,获取当前时间到格林威治时间1970年01月01日00时00分00秒的秒数

获取当前时间(年/月/日/时/分/秒)