العربية
<!-- سجل HTML--> <HTML> <TITLE>اللغة الإنجليزية في 24/12</TITLE> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!-- ابدأ دالة showMilitaryTime() { if (document.form.showMilitary[0].checked) { return true; } إرجاع خطأ؛ } function showTheHours(theHour) { if (showMilitaryTime() || (theHour > 0 && theHour < 13)) { return (theHour); } if (theHour == 0) { return (12); } العودة (الساعة-12); } function showZeroFilled(inValue) { if (inValue > 9) { return "" + inValue; } return "0" + inValue; } دالة showAmPm() { if (showMilitaryTime()) { return (""); } if (now.getHours() < 12) { return ("am"); } العودة ("مساء")؛ } دالة showTheTime() { now = new Date document.form.showTime.value = showTheHours(now.getHours()) + ": " + showZeroFilled(now.getMinutes()) + ": " + showZeroFilled(now.getSeconds( )) + showAmPm() setTimeout("showTheTime()",1000) } // النهاية --> </script> <BODY onLoad="showTheTime()"> <!-- الخطوة الثالثة: أضف الكود الأخير في نص مستند HTML الخاص بك --> <BODY> <center><form name=form> <input type=text name=showTime size=11><p> <input type=radio name=showMilitary check>24 ساعة<br> <input type=radio name=showMilitary>12 سنة<br> </form></center>