Como obtenho o ano atual em JavaScript?
Como obtenho o ano atual em JavaScript?
Respostas:
Crie um new Date()
objeto e chame getFullYear()
:
new Date().getFullYear()
// returns the current year
Seqüestrar a resposta aceita para fornecer um exemplo de contexto básico, como um rodapé que sempre mostra o ano atual:
<footer>
© <span id="year"></span>
</footer>
Em outro lugar executado após o carregamento do HTML acima:
<script>
document.getElementById("year").innerHTML = new Date().getFullYear();
</script>
// Return today's date and time
var currentTime = new Date()
// returns the month (from 0 to 11)
var month = currentTime.getMonth() + 1
// returns the day of the month (from 1 to 31)
var day = currentTime.getDate()
// returns the year (four digits)
var year = currentTime.getFullYear()
// write output MM/dd/yyyy
document.write(month + "/" + day + "/" + year)
Aqui está outro método para obter a data
new Date().getDate() // Get the day as a number (1-31)
new Date().getDay() // Get the weekday as a number (0-6)
new Date().getFullYear() // Get the four digit year (yyyy)
new Date().getHours() // Get the hour (0-23)
new Date().getMilliseconds() // Get the milliseconds (0-999)
new Date().getMinutes() // Get the minutes (0-59)
new Date().getMonth() // Get the month (0-11)
new Date().getSeconds() // Get the seconds (0-59)
new Date().getTime() // Get the time (milliseconds since January 1, 1970)
É assim que eu o incorporo e produzo na minha página HTML:
<div class="container">
<p class="text-center">Copyright ©
<script>
var CurrentYear = new Date().getFullYear()
document.write(CurrentYear)
</script>
</p>
</div>
A saída para a página HTML é a seguinte:
Direitos autorais © 2018
new Date().getFullYear()
já é apresentado na resposta aceita.
para o ano atual, podemos usar getFullYear () da classe Date; no entanto, existem muitas funções que você pode usar de acordo com os requisitos, algumas funções são:
var now = new Date()
console.log("Current Time is: " + now);
// getFullYear function will give current year
var currentYear = now.getFullYear()
console.log("Current year is: " + currentYear);
// getYear will give you the years after 1990 i.e currentYear-1990
var year = now.getYear()
console.log("Current year is: " + year);
// getMonth gives the month value but months starts from 0
// add 1 to get actual month value
var month = now.getMonth() + 1
console.log("Current month is: " + month);
// getDate gives the date value
var day = now.getDate()
console.log("Today's day is: " + day);
Veja este exemplo, você pode colocá-lo onde quiser, sem se referir ao script no rodapé ou em outro lugar, como outras respostas
<script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
Nota de direitos autorais no rodapé como exemplo
Copyright 2010 - <script>new Date().getFullYear()>document.write(new Date().getFullYear());</script>
Você pode simplesmente usar javascript como este. Caso contrário, você pode usar o plugin momentJs, que ajuda em grandes aplicações.
new Date().getDate() // Get the day as a number (1-31)
new Date().getDay() // Get the weekday as a number (0-6)
new Date().getFullYear() // Get the four digit year (yyyy)
new Date().getHours() // Get the hour (0-23)
new Date().getMilliseconds() // Get the milliseconds (0-999)
new Date().getMinutes() // Get the minutes (0-59)
new Date().getMonth() // Get the month (0-11)
new Date().getSeconds() // Get the seconds (0-59)
new Date().getTime() // Get the time (milliseconds since January 1, 1970)
function generate(type,element)
{
var value = "";
var date = new Date();
switch (type) {
case "Date":
value = date.getDate(); // Get the day as a number (1-31)
break;
case "Day":
value = date.getDay(); // Get the weekday as a number (0-6)
break;
case "FullYear":
value = date.getFullYear(); // Get the four digit year (yyyy)
break;
case "Hours":
value = date.getHours(); // Get the hour (0-23)
break;
case "Milliseconds":
value = date.getMilliseconds(); // Get the milliseconds (0-999)
break;
case "Minutes":
value = date.getMinutes(); // Get the minutes (0-59)
break;
case "Month":
value = date.getMonth(); // Get the month (0-11)
break;
case "Seconds":
value = date.getSeconds(); // Get the seconds (0-59)
break;
case "Time":
value = date.getTime(); // Get the time (milliseconds since January 1, 1970)
break;
}
$(element).siblings('span').text(value);
}
li{
list-style-type: none;
padding: 5px;
}
button{
width: 150px;
}
span{
margin-left: 100px;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<ul>
<li>
<button type="button" onclick="generate('Date',this)">Get Date</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Day',this)">Get Day</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('FullYear',this)">Get Full Year</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Hours',this)">Get Hours</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Milliseconds',this)">Get Milliseconds</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Minutes',this)">Get Minutes</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Month',this)">Get Month</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Seconds',this)">Get Seconds</button>
<span></span>
</li>
<li>
<button type="button" onclick="generate('Time',this)">Get Time</button>
<span></span>
</li>
</ul>
A maioria das respostas encontradas aqui está correta apenas se você precisar do ano atual com base no fuso horário e no deslocamento da máquina local (lado do cliente) - fonte que, na maioria dos cenários, não pode ser considerada confiável (porque pode variar de máquina para máquina) .
As fontes confiáveis são:
Um método chamado na Date
instância retornará um valor com base no horário local da sua máquina.
Mais detalhes podem ser encontrados em "MDN web docs": JavaScript Date object .
Para sua conveniência, adicionamos uma nota relevante dos documentos deles:
(...) os métodos básicos para buscar a data e a hora ou seus componentes funcionam no fuso horário local (ou seja, sistema host) e deslocamento.
Outra fonte mencionando isso é: objeto de data e hora do JavaScript
é importante observar que, se o relógio de alguém estiver desativado por algumas horas ou estiver em um fuso horário diferente, o objeto Data criará um horário diferente daquele criado no seu próprio computador.
Algumas fontes confiáveis que você pode usar são:
Mas se você simplesmente não se importa com a precisão do tempo ou se o seu caso de uso exigir um valor de tempo relativo ao horário da máquina local, poderá usar com segurança Date
os métodos básicos do Javascript como Date.now()
, ou new Date().getFullYear()
(para o ano atual).