年月日三级下拉

function mySelectYMD(value,chkyear,chkmonth,chkday){ strYYYY = document.forms[0].YYYY.outerHTML; strMM = document.forms[0].MM.outerHTML; strDD = document.forms[0].DD.outerHTML;

MonHead = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; var y = new Date().getFullYear(); var str = strYYYY.substring(0, strYYYY.length - 9);

//赋年份的下拉框 for (var i = (y-50); i < (y+30); i++) //以今年为准,前50年,后30年 { str += "<option value='" + i + "'> " + i + "</option>rn"; } document.forms[0].YYYY.outerHTML = str +"</select>"; //赋月份的下拉框 var str = strMM.substring(0, strMM.length - 9); for (var i = 1; i < 13; i++) { str += "<option value='" + i + "'> " + i + "</option>rn"; } document.forms[0].MM.outerHTML = str +"</select>"; var n = MonHead[new Date().getMonth()]; if (new Date().getMonth() ==1 && IsPinYear(YYYYvalue)) n++; writeDay(n); //赋日期下拉框

YMDSelected(value,chkyear,chkmonth,chkday);

}

function YMDSelected(value,chkyear,chkmonth,chkday){ var YYYY=document.forms[0].YYYY; var MM=document.forms[0].MM; MonHead = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; var year,month,day; if(value!=""){ var times=value.split("-"); year=times[0]; month=times[1]; day=times[2]; }else if(chkyear!=""||chkmonth!=""||chkday!=""){ year=chkyear; month=chkmonth; day=chkday; } for(var i=0;i<YYYY.options.length;i++){ var option = YYYY.options[i]; if(option.value==parseInt(year)){ option.selected=true; break; } } for(var i=0;i<MM.options.length;i++){ var option = MM.options[i]; if(option.value==parseInt(month)){ option.selected=true; break; } } var n = MonHead[month-1]; if ((month-1) ==1 && IsPinYear(year)) n++; writeDay(n); //赋日期下拉框 var DD=document.forms[0].DD; for(var i=0;i<DD.options.length;i++){ var option = DD.options[i]; if(option.value==parseInt(day)){ option.selected=true; break; } } } function YYYYMM(str) //年发生变化时日期发生变化(主要是判断闰平年) { var MMvalue = document.forms[0].MM.options[document.forms[0].MM.selectedIndex].value; if (MMvalue == ""){ document.forms[0].DD.outerHTML = strDD; return; } var n = MonHead[MMvalue - 1]; if (MMvalue ==2 && IsPinYear(str)) n++; writeDay(n); } function MMDD(str) //月发生变化时日期联动 { var YYYYvalue = document.forms[0].YYYY.options[document.forms[0].YYYY.selectedIndex].value; if (str == ""){ document.forms[0].DD.outerHTML = strDD; return; } var n = MonHead[str - 1]; if (str ==2 && IsPinYear(YYYYvalue)) n++; writeDay(n); } function writeDay(n) //据条件写日期的下拉框 { var s = strDD.substring(0, strDD.length - 9); for (var i=1; i<(n+1); i++){ s += "<option value='" + i + "'> " + i + "</option>rn"; } document.forms[0].DD.outerHTML = s +"</select>"; } function IsPinYear(year)//判断是否闰平年 { return(0 == year%4 && (year%100 !=0 || year%400 == 0)) }

mySelectYMD("$!{group.GmtBrithday.Value}","$!{pp.getString('YYYY')}","$!{pp.getString('MM')}","$!{pp.getString('DD')}");

<input type="hidden" name="$!{group.GmtBrithday.Key}" value="$!{group.GmtBrithday.Value}"> <select name=YYYY οnchange="YYYYMM(this.value)" class=myselect> <option value="">请选择年</option> </select>年 <select name=MM οnchange="MMDD(this.value)" class=myselect> <option value="">选择月</option> </select>月 <select name=DD> <option value="">选择日</option class=myselect> </select>日

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值