มาดูแบบที่ 2 กันนะครับ
การแจ้งเวลาต่างๆ
<script language="JavaScript"> now = new Date(); hours = now.getHours() if ((hours>=0) && (hours<5)) { document.write ("<b>" + "ดึกมากแล้วนะคะ ยังไม่นอนอีกเหรอคะ" + "</b>");} if ((hours>=5) && (hours<12)) { document.write ("<b>" + "อรุณสวัสดิ์ค่ะ" + "</b>");} if ((hours>=12) && (hours<18)) { document.write ("<b>" + "สวัสดีตอนบ่ายค่ะ" + "</b>");} if ((hours>=18) && (hours<24)) { document.write ("<b>" + "สวัสดีตอนเย็นค่ะ" + "</b>");} document.write( "<br>"+" ขณะนี้เป็นเวลา : " + now.getHours() + ":" + now.getMinutes()); document.write("<br>" + "วันที่ : " + (now.getMonth()+1)+ " / " + now.getDate() + " / " + (1900+ now.getYear())); </script> |
|
<script language="javascript"> <!-- hide javascript document.write("<CENTER><STRONG><FONT FACE=AngsanaUPC size=6 COLOR=RED>"); day = new Date(); hr = day.getHours(); if ((hr >= 1) && (hr <=5)) { wd = "สวัสดีตอนเช้ามืดครับ และขอต้อนรับสู่";} if ((hr >= 6) && (hr <=9)) { wd = "สวัสดีตอนเช้าครับ และขอต้อนรับเข้าสู่";} if ((hr >= 10) && (hr <=11)) { wd = "สวัสดีตอนสายครับ และขอต้อนรับเข้าสู่";} if ((hr >= 12) && (hr <=16)) { wd = "สวัสดีตอนบ่ายครับ และขอต้อนรับเข้าสู่";} if ((hr >= 17) && (hr <=19)) { wd = "สวัสดีตอนค่ำครับ และขอต้อนรับเข้าสู่";} if ((hr >= 20) && (hr <=22)) { wd = "สวัสดีตอนค่ำครับ และขอต้อนรับเข้าสู่";} if ((hr >23) && (hr <=24)) { wd = "สวัสดีตอนดึกครับ และขอต้อนรับเข้าสู่";} if (hr==0) { wd = "สวัสดีตอนเที่ยงคืนครับ และขอต้อนรับเข้าสู่";} document.write(wd); document.write("</FONT></STRONG></CENTER>"); // done hiding --> </script> |
|
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin var days = new Array("อาทิตย์","จันทร์","อังคาร","พุธ","พฤหัสบดี","ศุกร์","เสาร์"); var months = new Array("มกราคม","กุมภาพันธ์","มีนาคม","เมษายน","พฤษภาคม","มิถุนายน", "กรกฏาคม","สิงหาคม","กันยายน","ตุลาคม","พฤศจิกายน","ธันวาคม"); // This lint for Last Modified //var dateObj = new Date(document.lastModified) // This line for Today date var dateObj = new Date() var wday = days[dateObj.getDay()] var lmonth = months[dateObj.getMonth()] var date = dateObj.getDate() var fyear = (543+(1900 + dateObj.getYear())) document.write('<center><font FACE="AngsanaUPC" SIZE=6 COLOR=red>') document.write('วันนี้ วัน'+wday + ' ที่ ' +date+' '+ lmonth+' '+ fyear) document.write('</font></center>') // End --> </SCRIPT> |
|
<form name="clock2"> ---------------------------------------------------------- <input type="text" name="clock" value="" size=5> -------------------------------------------------------- </form> ---------------------------------------------------------- <SCRIPT> function liveclock(){ var curdate=new Date() var hours=curdate.getHours() var minutes=curdate.getMinutes() var seconds=curdate.getSeconds() var suffix="AM" if (hours>=12){ suffix="PM" if (hours>=13) hours-=12} if (minutes<10) minutes="0"+minutes if (seconds<10) seconds="0"+seconds var thetime=hours+":"+minutes+":"+seconds+" "+suffix document.time.time2.value=thetime setTimeout("liveclock()",1000)} liveclock() </SCRIPT> |
|
<SCRIPT LANGUAGE="JavaScript"> <!-- Start now= new Date(); document.write("<FONT face='CordiaUPC,AngsanaUPC,Thonburi,FixedDB ThaiText New' size=+1 color=Red>"); document.write("วันที่: " + now.getDate() + "/" + (now.getMonth() + 1) + "/" + (543+(1900 + now.getYear()))); document.write("<br>"+"เวลา: " + now.getHours() + ":" + now.getMinutes() + "</font><br>"); //--> </SCRIPT> |
|
<SCRIPT LANGUAGE="JavaScript"> <!-- hide var timeStr, dateStr; function clock() { now= new Date(); // time hours= now.getHours(); minutes= now.getMinutes(); seconds= now.getSeconds(); timeStr= "" + hours; timeStr+= ((minutes < 10) ? ":0" : ":") + minutes; timeStr+= ((seconds < 10) ? ":0" : ":") + seconds; document.clock.time.value = timeStr; // date date= now.getDate(); month= now.getMonth()+1; year= now.getYear()-57; dateStr = "" + ((date < 10) ? "0" : "") + date; dateStr+= "/" + month; dateStr+= "/" + year; document.clock.date.value = dateStr; Timer= setTimeout("clock()",1000);} // --> </SCRIPT> <BODY onLoad="clock()"> <FORM NAME="clock"> <input type="text" name="date" size="8" value=""></br> <input type="text" name="time" size="8" value=""></br></form> |