edit
scusa, no so che cavolo ho fatto...
edit
scusa, no so che cavolo ho fatto...
"Ethics are to me something private. Whenever you use it as an argument for why somebody_else should do something, you’re no longer being ethical, you’re just being a sanctimonious dick-head"
Linus Torvalds
Prova comunque a dare una occhiata qui
e in particolare a
devguru - oggetto Date
"Ethics are to me something private. Whenever you use it as an argument for why somebody_else should do something, you’re no longer being ethical, you’re just being a sanctimonious dick-head"
Linus Torvalds
Solo due righe invece che cinque; se la data-stringa rispetta sempre la posizione dei caratteri:
codice:<script type="text/javascript"> var s = "20/01/09 @ 11:38"; var date = s.substring(3,5)+" "+s.substring(0,2)+" 20"+s.substring(6,8)+" "+s.substring(11); dateVar = new Date(date) alert(date); alert(dateVar); </script>