Jak uzyskać aktualny czas w JavaScript i używać go w timepicker?
Próbowałem var x = Date()
i otrzymałem:
Wtorek 15 maja 2012 05:45:40 GMT-0500
Ale potrzebuję tylko aktualnego czasu, na przykład 05:45
Jak mogę to przypisać do zmiennej?
Jak uzyskać aktualny czas w JavaScript i używać go w timepicker?
Próbowałem var x = Date()
i otrzymałem:
Wtorek 15 maja 2012 05:45:40 GMT-0500
Ale potrzebuję tylko aktualnego czasu, na przykład 05:45
Jak mogę to przypisać do zmiennej?
Odpowiedzi:
var d = new Date("2011-04-20T09:30:51.01");
d.getHours(); // => 9
d.getMinutes(); // => 30
d.getSeconds(); // => 51
lub
var d = new Date(); // for now
d.getHours(); // => 9
d.getMinutes(); // => 30
d.getSeconds(); // => 51
var d = new Date("2011-04-20 09:30:51.01"); alert(d.getHours()); // => 9
wyjścieNaN
T
więc teraz jest to właściwy uniwersalny ISO. BTW widzę tylko undefined
w IE. W każdym razie Naprawiono.
Krótko i prosto:
new Date().toLocaleTimeString(); // 11:18:48 AM
//---
new Date().toLocaleDateString(); // 11/16/2015
//---
new Date().toLocaleString(); // 11/16/2015, 11:18:48 PM
4 godziny później (użyj milisek: s == 1000):
new Date(new Date().getTime() + 4*60*60*1000).toLocaleTimeString(); // 3:18:48 PM or 15:18:48
2 dni wcześniej:
new Date(new Date().getTime() - 2*24*60*60*1000).toLocaleDateString() // 11/14/2015
Nie mogłem znaleźć rozwiązania, które zrobiłoby dokładnie to, czego potrzebowałem. Chciałem czysty i mały kod, więc wymyśliłem to:
(Ustaw raz w swoim master.js i wywołaj w razie potrzeby).
PURE JAVASCRIPT
function timeNow(i) {
var d = new Date(),
h = (d.getHours()<10?'0':'') + d.getHours(),
m = (d.getMinutes()<10?'0':'') + d.getMinutes();
i.value = h + ':' + m;
}
<a onclick="timeNow(test1)" href="#">SET TIME</a>
<input id="test1" type="time" value="10:40" />
AKTUALIZACJA
Obsługa przeglądarek jest teraz wystarczająca, aby po prostu użyć: toLocaleTimeString
W przypadku typu html5time
format musi być hh:mm
.
function timeNow(i) {
i.value = new Date().toLocaleTimeString([], {hour: '2-digit', minute:'2-digit'});
}
<a onclick="timeNow(test1)" href="#">SET TIME</a>
<input id="test1" type="time" value="10:40" />
new Date().toLocaleTimeString('fr', {hour: '2-digit', minute:'2-digit'});
Próbować
new Date().toLocaleTimeString().replace("/.*(\d{2}:\d{2}:\d{2}).*/", "$1");
Lub
new Date().toTimeString().split(" ")[0];
Czy masz na myśli:
var d = new Date();
var curr_hour = d.getHours();
var curr_min = d.getMinutes();
const date = Date().slice(16,21);
console.log(date);
Spróbuj tego:
var date = new Date();
var hour = date.getHours();
var min = date.getMinutes();
function getCurrentTime(){
var date = new Date();
var hh = date.getHours();
var mm = date.getMinutes();
hh = hh < 10 ? '0'+hh : hh;
mm = mm < 10 ? '0'+mm : mm;
curr_time = hh+':'+mm;
return curr_time;
}
Zobacz te metody Data ...
Tak możesz to zrobić.
const date = new Date();
const time = date.toTimeString().split(' ')[0].split(':');
console.log(time[0] + ':' + time[1])
new Date().toTimeString().slice(0, 5)
.
to -
var x = new Date();
var h = x.getHours();
var m = x.getMinutes();
var s = x.getSeconds();
więc-
x = date
h = hours
m = mins
s = seconds
Możesz po prostu użyć tych metod.
console.log(new Date().toLocaleTimeString([], { hour: '2-digit', minute: "2-digit", hour12: false }));
console.log(new Date().toLocaleTimeString([], { hour: '2-digit', minute: "2-digit" }));
To jest najkrótsza droga.
var now = new Date().toLocaleTimeString();
console.log(now)
Tutaj jest również sposób na manipulację strunami, o którym nie wspomniano.
var now = new Date()
console.log(now.toString().substr(16,8))
Date().substr(16, 5)
. Nie potrzebujesz toString()
.
Przypisz do zmiennych i wyświetl je.
time = new Date();
var hh = time.getHours();
var mm = time.getMinutes();
var ss = time.getSeconds()
document.getElementById("time").value = hh + ":" + mm + ":" + ss;
time
elemencie? OP poprosił o przechowywanie w zmiennej i tylko przez godzinę i minutę. let time = Date().substr(16, 5)
robi to.
Proste funkcje do oddzielania daty i godziny oraz w zgodnym formacie z danymi wejściowymi czasu i daty HTML
function formatDate(date) {
var d = new Date(date),
month = '' + (d.getMonth() + 1),
day = '' + d.getDate(),
year = d.getFullYear();
if (month.length < 2) month = '0' + month;
if (day.length < 2) day = '0' + day;
return [year, month, day].join('-');
}
function formatTime(date) {
var hours = new Date().getHours() > 9 ? new Date().getHours() : '0' + new Date().getHours()
var minutes = new Date().getMinutes() > 9 ? new Date().getMinutes() : '0' + new Date().getMinutes()
return hours + ':' + minutes
}
var today = new Date(); //gets current date and time
var hour = today.getHours();
var minute = today.getMinutes();
var second = today.getSeconds();
new
.
To zadziałało dla mnie, ale to zależy od tego, co otrzymasz, gdy uderzysz Date()
:
Date().slice(16,-12)
var hours = date.getHours();
var minutes = date.getMinutes();
var ampm = hours >= 12 ? 'pm' : 'am';
hours = hours % 12;
hours = hours ? hours : 12; // the hour '0' should be '12'
minutes = minutes < 10 ? '0'+minutes : minutes;
var strTime = hours + ':' + minutes + ' ' + ampm;
console.log(strTime);
$scope.time = strTime;
date.setDate(date.getDate()+1);
month = '' + (date.getMonth() + 1),
day = '' + date.getDate(1),
year = date.getFullYear();
if (month.length < 2) month = '0' + month;
if (day.length < 2) day = '0' + day;
var tomorrow = [year, month, day].join('-');
$scope.tomorrow = tomorrow;