• 年月日三级级联


    <html>
    <head>
    <title>年月日三下拉框联动</title>
    <meta http-equiv='Content-Type' content='text/html; charset=gb2312'>
    <meta name='author' content='GBK(tzol)//www.baidu.com'>
    </head>

    <body>
    <form name=form1>
    <select name=YYYY onchange="YYYYDD(this.value)">
    <option value="">请选择 年</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];

    //先给年下拉框赋内容
    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() ==&& 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) //年发生变化时日期发生变化(主要是判断闰平年)
    {
    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 ==&& 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 ==&& 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(== year%&& (year%100 !=|| year%400 == 0));}
    function optionsClear(e)
    {
    e.options.length = 1;
    }
    //--></script>
    </body>
    </html> 
  • 相关阅读:
    codeforces #601 div2 ABC~E1
    codeforces #600 div2 ABCD
    图形学 三次Hermite曲线绘制实现代码 javascript:es6+h5:canvas
    最小生成树(Prim / Kruskal)
    拓扑排序【Kahn算法(bfs)和dfs求拓扑序列及判环】
    Cow Traffic(正反向建图+DAG拓扑排序)
    JAVA大数
    【C/C++】关于strstr函数和c_str()函数
    【C/C++】关于函数调用传递实参
    2019上海icpc网络赛B. Light bulbs(思维+差分)
  • 原文地址:https://www.cnblogs.com/yamajia/p/522569.html
Copyright © 2020-2023  润新知