Free Web Hosting Provider
-
Web Hosting
-
E-commerce
-
High Speed Internet
-
Free Web Page
Search the Web
Welcome!
Close
Would you like to make this site your homepage? It's fast and easy...
Yes, Please make this my home page!
No Thanks
Don't show this to me again.
Close
home
|
column
แต่งเว็บด้วย
Script
ง่ายๆ
นาฬิกาตัวเลขแบบไม่ใช้ฟอร์ม
Example :
copy code ข้างล่างแล้วนำไปใส่ในส่วนที่ต้องการได้เลย
<span id=tick2> </span> <script> <!-- /*By Website Abstraction http://wsabstract.com Credit MUST stay intact for use */ function show2(){ if (!document.all&&!document.getElementById) return thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2 var Digital=new Date() var hours=Digital.getHours() var minutes=Digital.getMinutes() var seconds=Digital.getSeconds() var dn="PM" if (hours<12) dn="AM" if (hours>12) hours=hours-12 if (hours==0) hours=12 if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds var ctime=hours+":"+minutes+":"+seconds+" "+dn thelement.innerHTML="<b style='font-size:14;color:blue;'>"+ctime+"</b>" setTimeout("show2()",1000) } window.onload=show2 //--> </script>