HighDots Forums  

Formato data

Javascript (Italian) Il linguaggio JavaScript (it.comp.lang.javascript)


Discuss Formato data in the Javascript (Italian) forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Lux
 
Posts: n/a

Default Formato data - 11-02-2006 , 04:50 PM






Come posso impostare la data da 02/11/2006 a 02/11/06 ?

<SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript">
<!--
var data = new Date(document.lastModified);
var dzien = data.getDate();
var miesiac = data.getMonth() + 1;
var rok = (data.getFullYear ? data.getFullYear() : data.getYear());
if (dzien < 10) dzien = "0" + dzien;
if (miesiac < 10) miesiac = "0" + miesiac;
if (data != 0) document.write(dzien + "/" + miesiac + "/" + rok);
else document.write("Data nieznana!");
//-->
</SCRIPT>



Reply With Quote
  #2  
Old   
Lux
 
Posts: n/a

Default Re: Formato data - 11-03-2006 , 04:09 AM






nessuno lo sa?










"Lux" <leo.michNOSPAM (AT) tiscali (DOT) it> ha scritto nel messaggio
news:454a6819$0$7634$4fafbaef (AT) reader1 (DOT) news.tin.it...
Quote:
Come posso impostare la data da 02/11/2006 a 02/11/06 ?

SCRIPT TYPE="text/javascript" LANGUAGE="JavaScript"
!--
var data = new Date(document.lastModified);
var dzien = data.getDate();
var miesiac = data.getMonth() + 1;
var rok = (data.getFullYear ? data.getFullYear() : data.getYear());
if (dzien < 10) dzien = "0" + dzien;
if (miesiac < 10) miesiac = "0" + miesiac;
if (data != 0) document.write(dzien + "/" + miesiac + "/" + rok);
else document.write("Data nieznana!");
//--
/SCRIPT




Reply With Quote
  #3  
Old   
Luca Pascali
 
Posts: n/a

Default Re: Formato data - 11-03-2006 , 05:51 AM



Lux wrote:
Quote:
nessuno lo sa?

[...]

Visto che rok è un numero (e vale 2006), fare un

var rok = (data.getFullYear ? data.getFullYear() : data.getYear()) % 100;

Nota il "% 100".
Poi, dopo, ci metti lo zero iniziale, se serve.

Dai che con un poco di sforzo ce la facevi anche tu ;-)

LP

--


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.