العربية
<!--لتحقيق هذا التأثير، يلزم خطوتين. الخطوة الأولى هي: إضافة التعليمات البرمجية التالية إلى منطقة <head>--> <SCRIPT LANGUAGE="JavaScript"> <!-- بدء الدالة formatDate(date) { var mymonth = date.getMonth()+1; var myweekday = date.getDate(); return (mymonth + "month" + myweekday+ "day" } function printWeek() { var now = new Date(); nowDayOfWeek = now .getDay(); var nowDay = now.getDate(); var nowMonth = now.getMonth(); = تاريخ جديد (nowYear, nowMonth, nowDay - nowDayOfWeek); varweekEndDate = new Date(nowYear, nowMonth, nowDay + (6 - nowDayOfWeek)); document.write("الأسبوع الحالي: " + formatDate(weekStartDate) + " - " + formatDate(weekEndDate)); } // End --> </script> <!--الخطوة 2: أضف الكود التالي إلى منطقة <body> --> <script> printWeek();