1. 程式人生 > >【JS】獲取當前時間,且格式為yyyy-MM-dd hh:mm:ss

【JS】獲取當前時間,且格式為yyyy-MM-dd hh:mm:ss

我們在前端獲取當前時間

var nowDate = new Date();

時間格式為:

Sun May 27 2018 19:28:09 GMT+0800 (中國標準時間)

但是我們想在頁面上顯示為 2007-1-31 8:30的格式,所以需要對時間進行轉換:

var nowDate = new Date();
 var year = nowDate.getFullYear();
 var month = nowDate.getMonth() + 1 < 10 ? "0" + (nowDate.getMonth() + 1)
  : nowDate.getMonth() + 1;
 var day = nowDate.getDate() < 10 ? "0" + nowDate.getDate() : nowDate
  .getDate();
var hour = nowDate.getHours(); 
var minutes = nowDate.getMinutes();
var seconds = nowDate.getSeconds();
 var dateStr = year + "-" + month + "-" + day +" " + hour +":" +minutes+":"+seconds; 
 console.log(dateStr);

相關推薦

JS獲取當前時間格式yyyy-MM-dd hh:mm:ss

我們在前端獲取當前時間:var nowDate = new Date();時間格式為:Sun May 27 2018 19:28:09 GMT+0800 (中國標準時間)但是我們想在頁面上顯示為 200

JS獲取當前時間時間時間戳之間的轉換

獲取當前時間 <input name="timesj" value="" type="text" id="timesj" class="intxt"> <script type="text/javascript">

js獲取當前時間格式化為"yyyy-MM-dd HH:mm:ss"

function getFormatDate() { var date = new Date(); var month = date.getMonth() + 1; var strDate = date.getDate(); if (mont

js實現獲取當前時間並一直重新整理

<!DOCTYPE html> <html> <head> <script src="/jquery/jquery-1.11.1.min.js"><

java獲取當前時間currentTimeMillis()

現在小編要分享的是,獲取當前時間,並且時間格式為yyyy-MM-dd HH:mm:ss。 接下來直接看程式碼吧: private static SimpleDateFormat df=new Sim

js 的date的format時間獲取當前時間前一天的日期

mon class orm hour days sub lac reg .get Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getM

js獲取當前時間格式YYYY-MM-DD

clas amp urn RR AR 時間 當前 nbsp cti //獲取當前時間,格式YYYY-MM-DD function getNowFormatDate() { var date = new Date(); var sep

vue開發js實現獲取當前日期頁面渲染當前日期後5天的日期時間

執行效果如下: 全部程式碼: //css樣式: <style> h5,.div { width: 50%; line-height: 60px; text-align: center; margin: 0 auto; border:

js獲取當前時間並將標準日期格式轉換成Long型

獲取當前日期: //獲取當前時間 var nowDate = new Date(); var year= nowDate.getFullYear(); var month = nowDate

獲取當前的日期時間js函數,格式yyyy-MM-dd hh:mm:ss

style mon func get minute ets logs var getdate 1 //獲取當前的日期時間函數,格式為“yyyy-MM-dd hh:mm:ss” 2 function getNowFormatDate(date) { 3 if

java如何獲取當前時間精確到毫秒

led style time date() new hour 時間 text 參考 import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; //func

js前臺調試在瀏覽器調試環境下找不到js怎麽辦?

alt 所有 body 圖片 ron 點擊 nbsp 分享 方法 針對這次 整個項目單頁面的情況下,所有點擊出現的新頁面都是追加在母頁面的情況下,很多時候不像原本的情況,可以直接在瀏覽器的調試環境下找到想要調試的js代碼 這種情況下,怎麽能找到子頁面的js代碼,調試呢

PHP獲取當前時間計算一天、一周、一月、一年的後時間

clas col time class nbsp years spa 分鐘 code 獲取當前時間: $now = date(‘Y-m-d H:i:s‘,time()); 獲取當前時間一分鐘的時間: date("Y-m-d H:i:s",strtotime("+

Mysql 如何設置字段自動獲取當前時間附帶添加字段和修改字段的例子

mes 設置默認時間 table pda mod -- creat column ble --添加CreateTime 設置默認時間 CURRENT_TIMESTAMP ALTER TABLE `table_name`ADD COLUMN `CreateTime` d

動態獲取當前時間查詢數據。

spa ise 表名 new hist ring class ice result 1 HashMap<String,Object> paramMap =new HashMap<String,Object>(); 2 /

C#獲取日期時間

前言 我們在機房重構的時候,我們經常會用到獲取時間和日期的操作! 我們可以通過使用DataTime這個類來獲取當前的時間。通過呼叫類中的各種方法我們可以獲取不同的時間:如:日期(2008-09-04)、時間(12:12:12)、日期+時間(2008-09-04 12:11:10)等。 時

JS獲取當前時間 yy-mm-dd hh:mm:ss

//獲取當前時間 var date = new Date(); var seperator1 = "-"; var seperator2 = ":"; var month = date.getMonth() + 1; var strDate = date.getDate(); if (mon

JSP獲取當前時間 以及ifelse在jsp中的應用

新建一個動態web工程 然後再webcontent下面新建一個jsp檔案 在裡面寫入下面示例程式碼 開啟伺服器 執行 <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF

js 獲取當前日期時間 格式 yyyy-mm-dd hh MM ss

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow 也歡迎大家轉載本篇文章。分享知識,造福人民,實現我們中華民族偉大復興!        

Vue中獲取當前時間可用於判斷資訊是否已過有效時間

<template> <div class="content-wrapper"> <section> <el-table border stripe :data="datas" highlight-cur