js日期、星座的级联显示代码


Posted in Javascript onJanuary 23, 2014

js 代码

    function birthdayOnchange(obj) {
        var year = $("<%= DDL_Year.ClientID%>").value;
        if (year == "year")
            return;
        else
            year = parseInt(year, 10);

        var month = $("<%=DDL_Month.ClientID%>").value;
        if (month == "month")
            return;
        else
            month = parseInt(month, 10);
        var day = $("<%=DDL_Day.ClientID%>").value;
        var wholeday = getDays(year, month);
        if (1) {
            var options = $("<%=DDL_Day.ClientID%>").options;
            for (var i = 1; i <= wholeday; i++) {
                var j = i.toString();
                j = j.length == 1 ? "0" + j : j;
                options.length = i + 1;
                options[i].value = j;
                options[i].text = j;
                if (day <= wholeday && i == day) {
                    options[i].selected = true;
                }
            }
        }
    }
 function getDays(year, month) {
        var dayarr = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
        if (month == 2) {
            if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0 || year < 1900)
                return 29;
            else
                return dayarr[month - 1];
        }
        else {
            return dayarr[month - 1];
        }
    }
    function adjustAstro() {
        var v_astro = getAstro($("<%=DDL_Month.ClientID%>").value, $("<%=DDL_Day.ClientID%>").value);
        $("<%=astro.ClientID %>").options[0].text = v_astro;
    }
    function getAstro(v_month, v_day) {
        v_month = parseInt(v_month, 10)
        v_day = parseInt(v_day, 10);
        if ((v_month == 12 && v_day >= 22)
  || (v_month == 1 && v_day <= 20)) {
            return "魔羯座";
        }
        else if ((v_month == 1 && v_day >= 21)
  || (v_month == 2 && v_day <= 19)) {
            return "水瓶座";
        }
        else if ((v_month == 2 && v_day >= 20)
  || (v_month == 3 && v_day <= 20)) {
            return "双鱼座";
        }
        else if ((v_month == 3 && v_day >= 21)
  || (v_month == 4 && v_day <= 20)) {
            return "白羊座";
        }
        else if ((v_month == 4 && v_day >= 21)
  || (v_month == 5 && v_day <= 21)) {
            return "金牛座";
        }
        else if ((v_month == 5 && v_day >= 22)
  || (v_month == 6 && v_day <= 21)) {
            return "双子座";
        }
        else if ((v_month == 6 && v_day >= 22)
  || (v_month == 7 && v_day <= 22)) {
            return "巨蟹座";
        }
        else if ((v_month == 7 && v_day >= 23)
  || (v_month == 8 && v_day <= 23)) {
            return "狮子座";
        }
        else if ((v_month == 8 && v_day >= 24)
  || (v_month == 9 && v_day <= 23)) {
            return "处女座";
        }
        else if ((v_month == 9 && v_day >= 24)
  || (v_month == 10 && v_day <= 23)) {
            return "天秤座";
        }
        else if ((v_month == 10 && v_day >= 24)
  || (v_month == 11 && v_day <= 22)) {
            return "天蝎座";
        }
        else if ((v_month == 11 && v_day >= 23)
  || (v_month == 12 && v_day <= 21)) {
            return "射手座";
        }
        return "";
    }

html
                <DIV>出生日期:</DIV>
                <DIV>
                    <asp:DropDownList ID="DDL_Year" runat="server"  onchange="birthdayOnchange(this);"></asp:DropDownList> 年 
                    <asp:DropDownList ID="DDL_Month" runat="server"  onchange="birthdayOnchange(this);adjustAstro();"></asp:DropDownList> 月 
                    <asp:DropDownList ID="DDL_Day" runat="server" onchange="adjustAstro();"></asp:DropDownList> 日 
                </DIV>
                <DIV>星座:</DIV>
                <DIV>
                    <SELECT id=astro disabled name=astro runat="server"> 
                        <OPTION selected>处女座</OPTION>
                    </SELECT>
                </DIV>
Javascript 相关文章推荐
浅谈Javascript面向对象编程
Nov 15 Javascript
js为空或不是对象问题的快速解决方法
Dec 11 Javascript
深入理解JavaScript系列(40):设计模式之组合模式详解
Mar 04 Javascript
极力推荐一款小巧玲珑的可视化编辑器bootstrap-wysiwyg
May 27 Javascript
利用Angular.js限制textarea输入的字数
Oct 20 Javascript
浅谈jquery选择器 :first与:first-child的区别
Nov 20 Javascript
JS中定位 position 的使用实例代码
Aug 06 Javascript
微信小程序页面滑动屏幕加载数据效果
Nov 16 Javascript
React-Router如何进行页面权限管理的方法
Dec 06 Javascript
微信小程序如何像vue一样在动态绑定类名
Apr 17 Javascript
JS+php后台实现文件上传功能详解
Mar 02 Javascript
浅谈vue.use()方法从源码到使用
May 12 Javascript
js根据日期判断星座的示例代码
Jan 23 #Javascript
jQuery中Dom的基本操作小结
Jan 23 #Javascript
利用js正则表达式验证手机号,email地址,邮政编码
Jan 23 #Javascript
js验证电话号码与手机支持+86的正则表达式
Jan 23 #Javascript
Jquery 过滤器(first,last,not,even,odd)的使用
Jan 22 #Javascript
Jquery遍历节点的方法小集
Jan 22 #Javascript
Jquery如何实现点击时高亮显示代码
Jan 22 #Javascript
You might like
PHP连接MongoDB示例代码
2012/09/06 PHP
destoon实现不同会员组公司名称显示不同的颜色的方法
2014/08/22 PHP
根据分辩率调用不同的CSS.
2007/01/08 Javascript
javascript eval函数深入认识
2009/02/21 Javascript
深入认识javascript中的eval函数
2009/11/02 Javascript
jQuery hover 延时器实现代码
2011/03/12 Javascript
jQuery实现form表单reset按钮重置清空表单功能
2012/12/18 Javascript
在JavaScript中typeof的用途介绍
2013/04/11 Javascript
jquery中交替点击事件的实现代码
2014/02/14 Javascript
JS实现倒计时和文字滚动的效果实例
2014/10/29 Javascript
js打造数组转json函数
2015/01/14 Javascript
JQuery中绑定事件(bind())和移除事件(unbind())
2015/02/27 Javascript
Nodejs初级阶段之express
2015/11/23 NodeJs
bootstrap使用validate实现简单校验功能
2016/12/02 Javascript
微信小程序之获取当前位置经纬度以及地图显示详解
2017/05/09 Javascript
js学习总结之DOM2兼容处理重复问题的解决方法
2017/07/27 Javascript
node.js中fs文件系统目录操作与文件信息操作
2018/02/24 Javascript
小程序实现列表多个批量倒计时
2021/01/29 Javascript
javascript中call()、apply()的区别
2019/03/21 Javascript
微信小程序云开发实现云数据库读写权限
2019/05/17 Javascript
VueJS 取得 URL 参数值的方法
2019/07/19 Javascript
VUE+node(express)实现前后端分离
2019/10/13 Javascript
JS表单验证插件之数据与逻辑分离操作实例分析【策略模式】
2020/05/01 Javascript
python socket 超时设置 errno 10054
2014/07/01 Python
Python中endswith()函数的基本使用
2015/04/07 Python
Python中unittest模块做UT(单元测试)使用实例
2015/06/12 Python
Python写入CSV文件的方法
2015/07/08 Python
Python爬虫爬取美剧网站的实现代码
2016/09/03 Python
python 实现一个贴吧图片爬虫的示例
2017/10/12 Python
python实现得到当前登录用户信息的方法
2019/06/21 Python
在cmd中查看python的安装路径方法
2019/07/03 Python
python 环境搭建 及python-3.4.4的下载和安装过程
2019/07/20 Python
小学模范班主任事迹材料
2014/05/13 职场文书
出生医学证明书
2014/09/15 职场文书
给老师的一封感谢信
2015/01/20 职场文书
基于Python编写一个监控CPU的应用系统
2022/06/25 Python