Начало
Навигация
Месяц страниц
Если вы поддерживаете отдельные страницы на каждый месяц, этот сценарий может перенаправить пользователя на нужную страницу автоматически!
JavaScript Navigation: Месяц страниц
<!-- TWO STEPS TO INSTALL MONTH PAGE: 1. Copy the coding into the HEAD of your HTML document 2. Add the onLoad event handler into the BODY tag --> <!-- STEP ONE: Paste this code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin function monthPage() { today = new Date(); m = new Array( "January.html","February.html", "March.html","April.html","May.html", "June.html","July.html","August.html", "September.html","October.html", "November.html","December.html" ); window.location = m[today.getMonth()]; } // End --> </script> <!-- STEP TWO: Insert the onLoad event handler into your BODY tag --> <BODY OnLoad="monthPage()"> <!-- Script Size: 0.85 KB -->