年月日三下拉框联动

  1. <html>
  2. <head>
  3. <title>年月日三下拉框联动</title>
  4. <meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
  5. <meta name='author' content='F.R.Huang(meizz梅花雪)//www.meizz.com'>
  6. </head>
  7. <body>
  8. <form name=form1>
  9. <select name=YYYY onChange="YYYYDD(this.value)">
  10. <option value="">请选择 年</option>
  11. </select>
  12. <select name=MM onChange="MMDD(this.value)">
  13. <option value="">选择 月</option>
  14. </select>
  15. <select name=DD>
  16. <option value="">选择 日</option>
  17. </select>
  18. </form>
  19. <script language="JavaScript"><!--
  20. function YYYYMMDDstart()
  21. {
  22. MonHead = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];
  23. //先给年下拉框赋内容
  24. var y = new Date().getFullYear();
  25. for (var i = (y-30); i < (y+30); i++) //以今年为准,前30年,后30年
  26. document.form1.YYYY.options.add(new Option(" "+ i +" 年", i));
  27. //赋月份的下拉框
  28. for (var i = 1; i < 13; i++)
  29. document.form1.MM.options.add(new Option(" " + i + " 月", i));
  30. document.form1.YYYY.value = y;
  31. document.form1.MM.value = new Date().getMonth() + 1;
  32. var n = MonHead[new Date().getMonth()];
  33. if (new Date().getMonth() ==1 && IsPinYear(YYYYvalue)) n++;
  34. writeDay(n); //赋日期下拉框Author:meizz
  35. document.form1.DD.value = new Date().getDate();
  36. }
  37. if(document.attachEvent)
  38. window.attachEvent("onload", YYYYMMDDstart);
  39. else
  40. window.addEventListener('load', YYYYMMDDstart, false);
  41. function YYYYDD(str) //年发生变化时日期发生变化(主要是判断闰平年)
  42. {
  43. var MMvalue = document.form1.MM.options[document.form1.MM.selectedIndex].value;
  44. if (MMvalue == ""){ var e = document.form1.DD; optionsClear(e); return;}
  45. var n = MonHead[MMvalue - 1];
  46. if (MMvalue ==2 && IsPinYear(str)) n++;
  47. writeDay(n)
  48. }
  49. function MMDD(str) //月发生变化时日期联动
  50. {
  51. var YYYYvalue = document.form1.YYYY.options[document.form1.YYYY.selectedIndex].value;
  52. if (YYYYvalue == ""){ var e = document.form1.DD; optionsClear(e); return;}
  53. var n = MonHead[str - 1];
  54. if (str ==2 && IsPinYear(YYYYvalue)) n++;
  55. writeDay(n)
  56. }
  57. function writeDay(n) //据条件写日期的下拉框
  58. {
  59. var e = document.form1.DD; optionsClear(e);
  60. for (var i=1; i<(n+1); i++)
  61. e.options.add(new Option(" "+ i + " 日", i));
  62. }
  63. function IsPinYear(year)//判断是否闰平年
  64. return(0 == year%4 && (year%100 !=0 || year%400 == 0));}
  65. function optionsClear(e)
  66. {
  67. e.options.length = 1;
  68. }
  69. //--></script>
  70. </body>
  71. </html> 
<HTML> <HEAD> <title>年月日联动下拉框</title> <meta http-equiv='Content-Type' content='text/html; charset=gb2312'> <meta name='author' content='http://singlepine.cnblogs.com/'> </HEAD> <body> <form name="form1"> 请选择 年 选择 月 选择 日 </form> [removed]<!-- function YYYYMMDDstart() { MonHead = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]; //先给年下拉框赋内容 var y = new Date().getFullYear(); for (var i = (y-30); i < (y+30); i++) //以今年为准,前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); //赋日期下拉框 document.form1.DD.value = new Date().getDate(); } if(document.attachEvent) window.attachEvent("onload", YYYYMMDDstart); else window.addEventListener('load', YYYYMMDDstart, false); function YYYYDD(str) //年发生变化时日期发生变化(主要是判断闰平年) { 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) //月发生变化时日期联动 { 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) //据条件写日期的下拉框 { 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 && (year0 !=0 || year@0 == 0)); } function optionsClear(e) { e.options.length = 1; } //--> [removed] </body> </HTML>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值