Vlade' <3 Membru Activ
Numarul mesajelor : 715 Data nasterii : 09/12/1994 Data de inscriere : 21/07/2009 Varsta : 29 Localizare : Undeva pe planeta albastra
| Subiect: Javascript Sam Noi 26, 2011 3:14 pm | |
| - Cod:
-
<script type="text/javascript"> var d=new Date(); var theDay=d.getDay(); switch (theDay) { case 0: document.write("<b>Sleepy Sunday!!</b>"); break; case 1: document.write("<b>The hell with the school!!Stay here and chat!!</b>"); break; case 2: document.write("<b>The hell with the school!!Stay here and chat!!</b>"); break; case 3: document.write("<b>The hell with the school!!Stay here and chat!!</b>"); break; case 4: document.write("<b>The hell with the school!!Stay here and chat!!</b>"); break; case 5: document.write("<b>Finally weekend!!</b>"); break; case 6: document.write("<b>Sunny Saturday!!</b>"); break; default: document.write("<b>I'm really looking forward to this weekend!</b>"); } </script>
ce face acest script? in functie de ziua respectiva acest script va arata diferite fraze tinem cont ca sunday=0 monday=1 etc
observam functia: "if" este sunday atunci "print" "Sleepy Sunday" si asa mai departe trebuie doar introdusa in pagin web | |
|