»
Tiếng AnhTiếng PhápTiếng Việt

In - Hiển thị giờ trong khung nhập liệu - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Thời gian » Đồng hồ » Hiển thị giờ trong khung nhập liệu
URL: https://www.javascriptbank.com/current-time-in-textbox.html

Hiển thị giờ trong khung nhập liệu © JavaScriptBank.comHiệu ứng sẽ hiển thị giờ hệ thống trong khung.

Phiên bản đầy đủ: jsB@nk » Thời gian » Đồng hồ » Hiển thị giờ trong khung nhập liệu
URL: https://www.javascriptbank.com/current-time-in-textbox.html



JavaScript
<script language="JavaScript"><!-- Beginvar timerID = null;var timerRunning = false;function stopclock (){if(timerRunning)clearTimeout(timerID);timerRunning = false;}function showtime () {var now = new Date();var hours = now.getHours();var minutes = now.getMinutes();var seconds = now.getSeconds()var timeValue = "" + ((hours >12) ? hours -12 :hours)if (timeValue == "0") timeValue = 12;timeValue += ((minutes < 10) ? ":0" : ":") + minutestimeValue += ((seconds < 10) ? ":0" : ":") + secondstimeValue += (hours >= 12) ? " P.M." : " A.M."document.clock.face.value = timeValue;timerID = setTimeout("showtime()",1000);timerRunning = true;}function startclock() {stopclock();showtime();}// End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<body onload="startclock()"><FORM name="clock"><input type="text" name="face" size=13 value=""></FORM></body><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->