View Single Post
ישן 14-07-12, 18:24   # 3
Bernoli
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Jul 2007
הודעות: 1,103

Bernoli לא מחובר  

גם JS מתאים ?

HTML קוד:
 <SCRIPT LANGUAGE="JavaScript"> 
currentTime = new Date(); 
if (currentTime.getHours() < 12) 
document.write("בוקר טוב"); 
else if (currentTime.getHours() < 16) 
document.write("צהריים טובים"); 
else if (currentTime.getHours() < 18) 
document.write("אחר הצהריים טובים"); 
else if (currentTime.getHours() < 22) 
document.write("ערב טוב"); 
else 
document.write("לילה טוב"); 
</SCRIPT>
  Reply With Quote