Начало
Часы
Текущее время
Используйте JavaScript, чтобы поместить текущее время на Вашей странице. A.M. and P.M.
JavaScript Clocks: Текущее время
<!-- THREE STEPS TO INSTALL CURRENT TIME: 1. Paste the specified coding into the HEAD of your HTML document 2. Add the onLoad event handler to the BODY tag 2. Put the last code into the BODY of your HTML document --> <!-- STEP ONE: Copy this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var 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" : ":") + minutes timeValue += ((seconds < 10) ? ":0" : ":") + seconds timeValue += (hours >= 12) ? " P.M." : " A.M." document.clock.face.value = timeValue; timerID = setTimeout("showtime()",1000); timerRunning = true; } function startclock() { stopclock(); showtime(); } // End --> </SCRIPT> <!-- STEP TWO: Add this onLoad event handler to the BODY tag --> <BODY onLoad="startclock()"> <!-- STEP THREE: Copy this code into the BODY of your HTML document --> <CENTER> <FORM name="clock"> <input type="text" name="face" size=13 value=""> </FORM> </CENTER> <!-- Script Size: 1.45 KB -->