Uhrzeit per Java! Problem bei < 10

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • Uhrzeit per Java! Problem bei < 10

    also ich habe folgendes Problem. Ich habe auf meine Homepage eine Uhr eingebaut, nur ist wenn man eine Zahl < 10 hat nur die einzelne zahl und keine 0 davor. Also 09:07 ist dann 9:7 und das sieht scheiße aus
    Hier mal der Quellcode!

    PHP-Code:
    <script language="JavaScript">
    <!--
    var 
    clockID 0;

    function 
    UpdateClock() {
       if(
    clockID) {
          
    clearTimeout(clockID);
          
    clockID  0;
       }

       var 
    tDate = new Date();

       
    document.theClock.theTime.value ""
                                       
    tDate.getHours() + ":"
                                       
    tDate.getMinutes() + ":"
                                       
    tDate.getSeconds();

       
    clockID setTimeout("UpdateClock()"1000);
    }
    function 
    StartClock() {
       
    clockID setTimeout("UpdateClock()"500);
    }

    function 
    KillClock() {
       if(
    clockID) {
          
    clearTimeout(clockID);
          
    clockID  0;
       }
    }

    //-->
    </script
    Ich hatte es mal so versucht

    PHP-Code:
    <script language="JavaScript">

    <!--
    var 
    clockID 0;

    function 
    UpdateClock() {
       if(
    clockID) {
          
    clearTimeout(clockID);
          
    clockID  0;
       }

       var 
    tDate = new Date();
       var 
    Std tDate.getHours();
       var  
    Min tDate.getMinutes();
       var 
    MinAusgabe  = ((Min 10) ? "0" Min Min);
       var 
    StdAusgabe  = ((Std 10) ? "0" Std Std);



       
    document.theClock.theTime.value ""
                                       
    MinAusgabe ":"
                                       
    SdtAusgabe;

       
    clockID setTimeout("UpdateClock()"1000);
    }
    function 
    StartClock() {
       
    clockID setTimeout("UpdateClock()"500);
    }

    function 
    KillClock() {
       if(
    clockID) {
          
    clearTimeout(clockID);
          
    clockID  0;
       }
    }

    //-->

    </script
    Aber das funktioniert irgendwo nicht -.-

  • #2
    Re: Uhrzeit per Java! Problem bei &lt; 10

    Original geschrieben von MaximusMR
    Code:
       document.theClock.theTime.value = ""
                                       + MinAusgabe ":"
                                       + SdtAusgabe;
    warum machst du denn hier keine richtige stringverknüpfung?

    Code:
       document.theClock.theTime.value = StdAusgabe + ":" + MinAusgabe;
    (die reihenfolge habe ich auch mal umgedreht ;-))
    I don't believe in rebirth. Actually, I never did in my whole lives.

    Kommentar


    • #3
      Oh LOL ich Vogel
      DANKE! Jetzt gehta !
      Danke danke! stimmt... sollte man schon umdrehen ^^

      Kommentar

      Lädt...
      X