English
Script description:<br> <!-- Add the following code to the <body> area --> <!-- http://www.downcodes.com/js --> <!-- bbs http://bbs .downcodes.com --> Let’s see the effect:<br> <SCRIPT> <!-- function initArray() { this.length = initArray.arguments.length; for (var i = 0; i < this. length; i++) this[i+1] = initArray.arguments[i]; } var DOWArray = new initArray("Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"," Sunday"); var today = new Date(); var day = DOWArray[today.getDay()]; alert("Today is " + day + "! If the file " + day + ".htm exists, the page will will automatically go to that page.") if (day == "Monday") window.location = "Monday.htm" if (day == "Tuesday") window.location = "Tuesday.htm" if (day == "Wednesday") window.location = "Wednesday.htm" if (day == "Thursday") window.location = "Thursday.htm" if (day == "Friday") window.location = "Friday.htm" if (day == "Saturday") window.location = "Saturday.htm" if (day == "Sunday") window.location = "Sunday.htm" //--> </SCRIPT>