代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
JS
】
日期星座的级联显示
作者:
珍冰
/ 发布于
2014/10/13
/
612
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 ""; } <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>
试试其它关键字
级联显示
日期星座
同语言下
.
Jquery搜索框获取回车事件
.
H5页面添加倒计时,然后自动跳转
.
通过user-agent判断h5页面是在哪个手机App(QQ、微信
.
nginx 禁止未绑定的域名访问
.
JavaScript 获取按键,并屏蔽系统 Window 事件
.
H5之只允许微信浏览器打开,禁止从外部浏览器访问
.
微信打开网址添加在浏览器中打开提示的办法
.
实现JS复制、粘贴,Chrome/Firefox下可用
.
video视频播放,play()、pause()、duration时长、onen
.
HTML5实现MP3上传前的预览和播放时长的获取
可能有用的
.
C#实现的html内容截取
.
List 切割成几份 工具类
.
SQL查询 多列合并成一行用逗号隔开
.
一行一行读取txt的内容
.
C#动态修改文件夹名称(FSO实现,不移动文件)
.
c# 移动文件或文件夹
.
c#图片添加水印
.
Java PDF转换成图片并输出给前台展示
.
网站后台修改图片尺寸代码
.
处理大图片在缩略图时的展示
珍冰
贡献的其它代码
(
12
)
.
检测是否是有效连接地址
.
获取星座
.
日期星座的级联显示
.
jQuery获取form表单元素的值
.
Ext 验证
.
div居底始终在屏幕的底部
.
extjs 上传文件 fileUpload
.
文本框内容提示 tip
.
显示二进制图片
.
Ext tree 动态生成、拖动排序、右键菜单
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3