Español
<!-- 完整的HTML代码如下--> <HTML> <TITLE>建站学院特效代码->>24/12 转换时钟</TITLE> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin función showMilitaryTime() { if (document.form.showMilitary[0].checked) { return true; } devolver falso; } function mostrarLasHoras(laHora) { if (mostrarHoraMilitar() || (laHora > 0 && laHora < 13)) { return (laHora); } if (la Hora == 0) { return (12); } retorno (la Hora-12); } función showZeroFilled(inValue) { if (inValue > 9) { return "" + inValue; } devolver "0" + inValor; } función showAmPm() { if (showMilitaryTime()) { return (""); } if (now.getHours() < 12) { return (" soy"); } retorno ("pm"); } función showTheTime() { ahora = nueva Fecha document.form.showTime.value = showTheHours(now.getHours()) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds( )) + showAmPm() setTimeout("showTheTime()",1000) } // Fin --> </script> <BODY onLoad="showTheTime()"> <!-- PASO TRES: Agregue el último código en el CUERPO de su documento HTML --> <CUERPO> <centro><nombre del formulario=formulario> <tipo de entrada=nombre de texto=showTime size=11><p> <tipo de entrada=nombre de radio=showMilitary marcado>24小时<br> <input type=radio name=showMilitary>12小时<br> </form></center>