lusoventus Posted January 12, 2016 at 12:04 PM Report Share #591868 Posted January 12, 2016 at 12:04 PM Olá a todos! sou novato nesta andanças e vinha aqui solicitar-vos uma ajuda: tenho uma página dedicado à columbofilia e pretendia ter um quadro com o dia atual e os próximos dias com as datas atualizadas automáticamente. Para o dia atual posso fazer o seguinte: <script> function data(){ Data_Atual = new Date(); Data = Data_Atual.getDate(); Dia = Data_Atual.getDay(); Mes = Data_Atual.getMonth(); Ano = Data_Atual.getFullYear(); if(Data < 10) { Data = "0" + Data; } Dia_Atual = new Array(7) Dia_Atual[0] = "Domingo" Dia_Atual[1] = "Segunda-feira" Dia_Atual[2] = "Terça-feira" Dia_Atual[3] = "Quarta-feira" Dia_Atual[4] = "Quinta-feira" Dia_Atual[5] = "Sexta-feira" Dia_Atual[6] = "Sábado" Mes_Atual = new Array(12) Mes_Atual[0] = "Janeiro" Mes_Atual[1] = "Fevereiro" Mes_Atual[2] = "Março" Mes_Atual[3] = "Abril" Mes_Atual[4] = "Maio" Mes_Atual[5] = "Junho" Mes_Atual[6] = "Julho" Mes_Atual[7] = "Agosto" Mes_Atual[8] = "Setembro" Mes_Atual[9] = "Outubro" Mes_Atual[10] = "Novembro" Mes_Atual[11] = "Dezembro" document.write(Dia_Atual[Dia] +", "+ Data + " de " + Mes_Atual[Mes] + " de " + Ano); } </script> <script language="javascript"> data(); Como devo fazer para apresentar os próximos seis dias a seguir? Obrigado! Link to comment Share on other sites More sharing options...
KTachyon Posted January 12, 2016 at 12:41 PM Report Share #591870 Posted January 12, 2016 at 12:41 PM Usa o moment.js “There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.” -- Tony Hoare Link to comment Share on other sites More sharing options...
lusoventus Posted January 12, 2016 at 03:26 PM Author Report Share #591882 Posted January 12, 2016 at 03:26 PM (edited) Usa o moment.js Obrigado pela ajuda. Tenho de estudar mais... não consigo... O que está mal aqui? <html xmlns="http://www.w3.org/1999/xhtml"> <script src="moment.js"> </script> <script> moment().add('days',1).format('YYYY-MM-DD'); </script> <head> <meta content="pt" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Untitled 3</title> </head> <body> <h1> <script language="javascript"> var moment(); </script> </h1> </body> </html> Edited January 12, 2016 at 04:25 PM by lusoventus Link to comment Share on other sites More sharing options...
KTachyon Posted January 12, 2016 at 09:38 PM Report Share #591902 Posted January 12, 2016 at 09:38 PM Para além de não estares a fazer nada? O Javascript não escreve nada na página sem que lhe digas especificamente para o fazer: <html xmlns="http://www.w3.org/1999/xhtml"> <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.1/moment-with-locales.min.js"> </script> <head> <meta content="pt" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Untitled 3</title> </head> <body> <div id="weekday"> </div> </body> <script> var div = document.getElementById("weekday"); div.innerHTML = moment().locale('pt').add('days', 1).format('dddd'); </script> </html> “There are two ways of constructing a software design: One way is to make it so simple that there are obviously no deficiencies, and the other way is to make it so complicated that there are no obvious deficiencies. The first method is far more difficult.” -- Tony Hoare Link to comment Share on other sites More sharing options...
lusoventus Posted January 12, 2016 at 10:00 PM Author Report Share #591903 Posted January 12, 2016 at 10:00 PM Em 1/12/2016 às 21:38, KTachyon disse: Para além de não estares a fazer nada? O Javascript não escreve nada na página sem que lhe digas especificamente para o fazer: <html xmlns="http://www.w3.org/1999/xhtml"> <script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.1/moment-with-locales.min.js"> </script> <head> <meta content="pt" http-equiv="Content-Language" /> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Untitled 3</title> </head> <body> <div id="weekday"> </div> </body> <script> var div = document.getElementById("weekday"); div.innerHTML = moment().locale('pt').add('days', 1).format('dddd'); </script> </html> Caro KTachyon, estou completamente envergonhado... muito obrigado! Eu bem disse que necessitava de estudar mais! Bem haja! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now