Начало
Формы
Авто Год
Это меню со спуском автоматически приспособит диапазон лет в зависимости от текущего года. Как добавленная премия, легко изменен диапазон.
JavaScript Forms: Авто Год
<!-- ONE STEP TO INSTALL AUTO YEAR: 1. Copy the coding into the BODY of your HTML document --> <!-- STEP ONE: Paste this code into the BODY of your HTML document --> <BODY> <SCRIPT LANGUAGE="JavaScript"> <! > <! > <!-- Begin var time = new Date(); var year = time.getYear(); if (year < 1900) { year = year + 1900; } var date = year - 101; /*change the '101' to the number of years in the past you want to show */ var future = year + 100; /*change the '100' to the number of years in the future you want to show */ document.writeln ("<FORM><SELECT><OPTION value=\"\">Year"); do { date++; document.write ("<OPTION value=\"" +date+"\">" +date+ ""); } while (date < future) document.write ("</SELECT></FORM>"); // End --> </script> <!-- Script Size: 1.09 KB -->