1樓 關(guān)于兩個(gè)下拉菜單,如何從數(shù)據(jù)庫(kù)中讀取記錄
|
- 作者: shithappen 2005年05月20日, 星期五 11:10 回復(fù)(0) | 引用(0) 加入博采
- 作者: shithappen 2005年05月19日, 星期四 09:17 回復(fù)(0) | 引用(0) 加入博采
<html> <head> <title>年月日三下拉框聯(lián)動(dòng)</title> <meta http-equiv=‘Content-Type‘ content=‘text/html; charset=gb2312‘> <meta name=‘a(chǎn)uthor‘ content=‘F.R.Huang(meizz梅花雪)//www.meizz.com‘> </head> <body> <form name=form1> <select name=YYYY onchange="YYYYDD(this.value)"> <option value="">請(qǐng)選擇 年</option> </select> <select name=MM onchange="MMDD(this.value)"> <option value="">選擇 月</option> </select> <select name=DD> <option value="">選擇 日</option> </select> </form> <script language="JavaScript"><!-- function YYYYMMDDstart() { MonHead = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; //先給年下拉框賦內(nèi)容 var y = new Date().getFullYear(); for (var i = (y-30); i < (y+30); i++) //以今年為準(zhǔn),前30年,后30年 document.form1.YYYY.options.add(new Option(" "+ i +" 年", i)); //賦月份的下拉框 for (var i = 1; i < 13; i++) document.form1.MM.options.add(new Option(" " + i + " 月", i)); document.form1.YYYY.value = y; document.form1.MM.value = new Date().getMonth() + 1; var n = MonHead[new Date().getMonth()]; if (new Date().getMonth() ==1 && IsPinYear(YYYYvalue)) n++; writeDay(n); //賦日期下拉框Author:meizz document.form1.DD.value = new Date().getDate(); } if(document.attachEvent) window.attachEvent("onload", YYYYMMDDstart); else window.addEventListener(‘load‘, YYYYMMDDstart, false); function YYYYDD(str) //年發(fā)生變化時(shí)日期發(fā)生變化(主要是判斷閏平年) { var MMvalue = document.form1.MM.options[document.form1.MM.selectedIndex].value; if (MMvalue == ""){ var e = document.form1.DD; optionsClear(e); return;} var n = MonHead[MMvalue - 1]; if (MMvalue ==2 && IsPinYear(str)) n++; writeDay(n) } function MMDD(str) //月發(fā)生變化時(shí)日期聯(lián)動(dòng) { var YYYYvalue = document.form1.YYYY.options[document.form1.YYYY.selectedIndex].value; if (YYYYvalue == ""){ var e = document.form1.DD; optionsClear(e); return;} var n = MonHead[str - 1]; if (str ==2 && IsPinYear(YYYYvalue)) n++; writeDay(n) } function writeDay(n) //據(jù)條件寫日期的下拉框 { var e = document.form1.DD; optionsClear(e); for (var i=1; i<(n+1); i++) e.options.add(new Option(" "+ i + " 日", i)); } function IsPinYear(year)//判斷是否閏平年 { return(0 == year%4 && (year%100 !=0 || year%400 == 0));} function optionsClear(e) { e.options.length = 1; } //--></script> </body> </html> |
聯(lián)系客服