日本語
<!-- 完全なHTML代码如下--> <HTML> <TITLE>建站学院特效代码->>24/12转换時刻钟</TITLE> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function showMilitaryTime() { if (document.form.showMilitary[0].checked) { return true; falseを返します。 } function showTheHours(theHour) { if (showMilitaryTime() || (theHour > 0 && theHour < 13)) { return (theHour); if (theHour == 0) { return (12); (theHour-12) を返します。 } function showZeroFilled(inValue) { if (inValue > 9) { return "" + inValue; "0" + inValue を返します。 } 関数 showAmPm() { if (showMilitaryTime()) { return (""); if (now.getHours() < 12) { return (" am"); return (「午後」); } function showTheTime() { now = 新しい日付 document.form.showTime.value = showTheHours(now.getHours()) + ":" + showZeroFilled(now.getMinutes()) + ":" + showZeroFilled(now.getSeconds( )) + showAmPm() setTimeout("showTheTime()",1000) } // 終了 --> </script> <BODY onLoad="showTheTime()"> <!-- ステップ 3: 最後のコードをHTML ドキュメントの BODY --> <BODY> <center><form name=form> <input type=text name=showTime size=11><p> <input type=radio name=showMilitary selected>24 時間<br> <input type=radio name=showMilitary>12 時間<br> </form></center>