爱易网
IT新闻
IT新闻
爱易资讯
网站搭建
云虚拟主机教程
云服务器教程
Apache教程
IIS教程
Nginx教程
网站策划
站长文章
推广教程
淘宝客教程
网页设计
HTML教程
XHTML教程
CSS教程
HTML5教程
CSS3教程
JavaSript基础
JQuery教程
Node.js教程
前端技术
Ajax教程
Js特效
Xml教程
平面设计
页面UI设计
photoshop教程
程序开发
AI人工智能
Asp教程
Php教程
Asp.Net教程
Net Core教程
C#教程
Java教程
Jsp教程
开发技术
微信小程序教程
Uniapp开发教程
微信公众号开发
Andriod教程
IOS教程
DOS教程
Python教程
Docker教程
Windows Container教程
数据库
MSSQL教程
MySQL教程
Redis教程
Access教程
Oracle教程
数据库教程
操作系统
Linux教程
Windows教程
MAC教程
Cisco教程
交换机教程
防火墙教程
搜索
爱易网页
JS特效
一款别致的万年历
一款别致的万年历
日期:2014-05-18 浏览次数:20284 次
欢迎光临爱易网网页脚本特效中心,点击运行按钮演示特效:
以下是程序代码
脚本说明: 第一步:把如下代码加入<body>区域中 <STYLE TYPE="text/css"> .normal{BACKGROUND: #ffffff} .today {font-weight:bold;BACKGROUND: #6699cc} .satday{color:green} .sunday{color:red} .days {font-weight:bold} </STYLE> <SCRIPT LANGUAGE="JavaScript"> var months = new Array("一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"); var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); /*var days = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");*/ var days = new Array("日","一", "二", "三", "四", "五", "六"); function getDays(month, year) { if (1 == month) return ((0 == year % 4) && (0 != (year % 100))) || (0 == year % 400) ? 29 : 28; else return daysInMonth[month]; } function getToday() { //得到今天的年,月,日 this.now = new Date(); this.year = this.now.getFullYear(); this.month = this.now.getMonth(); this.day = this.now.getDate(); } today = new getToday(); function newCalendar() { today = new getToday(); var parseYear = parseInt(document.all.year [document.all.year.selectedIndex].text); var newCal = new Date(parseYear, document.all.month.selectedIndex, 1); var day = -1; var startDay = newCal.getDay(); var daily = 0; if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth())) day = today.day; var tableCal = document.all.calendar.tBodies.dayList; var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); for (var intWeek = 0; intWeek < tableCal.rows.length;intWeek++) for (var intDay = 0;intDay < tableCal.rows[intWeek].cells.length;intDay++) { var cell = tableCal.rows[intWeek].cells[intDay]; if ((intDay == startDay) && (0 == daily)) daily = 1; if(day==daily) //今天,调用今天的Class cell.className = "today"; else if(intDay==6) //周六 cell.className = "sunday"; else if (intDay==0) //周日 cell.className ="satday"; else //平常 cell.className="normal"; if ((daily > 0) && (daily <= intDaysInMonth)) { cell.innerText = daily; daily++; } else cell.innerText = ""; } } function getDate() { var sDate; //这段代码处理鼠标点击的情况 if ("TD" == event.srcElement.tagName) if ("" != event.srcElement.innerText) { sDate = document.all.year.value + "年" + document.all.month.value + "月" + event.srcElement.innerText + "日"; alert(sDate); } } </SCRIPT> <input type="hidden" name="ret"> <TABLE ID="calendar" cellspacing="0" cellpadding="0" border=1> <THEAD> <TR> <TD COLSPAN=7 ALIGN=CENTER> <SELECT ID="month" ONCHANGE="newCalendar()"> <SCRIPT LANGUAGE="JavaScript"> for (var intLoop = 0; intLoop < months.length; intLoop++) document.write("<OPTION VALUE= " + (intLoop + 1) + " " + (today.month == intLoop ? "Selected" : "") + ">" + months[intLoop]); </SCRIPT> </SELECT> <SELECT ID="year" ONCHANGE="newCalendar()"> <SCRIPT LANGUAGE="JavaScript"> for (var intLoop = today.year-100; intLoop < (today.year + 64); intLoop++) document.write("<OPTION VALUE= " + intLoop + " " + (today.year == intLoop ? "Selected" : "") + ">" + intLoop); </SCRIPT> </SELECT> </TD> </TR> <TR CLASS="days"> <SCRIPT LANGUAGE="JavaScript"> document.write("<TD class=satday>" + days[0] + "</TD>"); for (var intLoop = 1; intLoop < days.length-1; intLoop++) document.write("<TD>" + days[intLoop] + "</TD>"); document.write("<TD class=sunday>" + days[intLoop] + "</TD>"); </SCRIPT> </TR> </THEAD> <TBODY border=1 cellspacing="0" cellpadding="0" ID="dayList"ALIGN=CENTER ONCLICK="getDate()"> <SCRIPT LANGUAGE="JavaScript"> for (var intWeek
上一篇:狡猾的按钮特效
下一篇:显示登陆时间
免责声明:
本文仅代表作者个人观点,与爱易网无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
相关资料
更多>
网络视频的几大趋势将成视频玩家躲不开的发力点
苹果30亿美元收购Beats
打车软件“明补变暗补”背后的小算盘
美剧讲硅谷创业者:远不及现实荒诞?
郭美美事件推手被抓 “秦火火”拷问网络底线
“论文查重”网店一月收入竟过百万
迅雷高管解读财报:收购快盘可快速融入小米
电话用户9月实名制:运营商监管受质疑
美图手机2问世 三大问题令其市场销量堪忧
推荐阅读
更多>
只有切到刚需痛点,漫画APP才能走下去
虚拟运营商前路迷茫 业界建议发力车联网
网曝富士康500万iphone遭退货是确证的事
马云:银行若放开存款利率 余额宝死了也光荣
虚拟运营商们更像三大运营商的“二道贩子”
在线音乐出现“小米公司”不是没有可能
杨元庆去年总薪酬1.33亿元
从WPS到office365,中国企业能否赶超美国?
传360周鸿祎曾试图阻止百度收购91无线
永不磨灭的九大尖端编程语言
迅雷高管解读财报:收购快盘可快速融入小米
高通反垄断案下月有望落定
中兴通讯不打机海战术 将向中高端手机转型
逆转猜想:如果阿里成为雅虎大股东会怎样?
机器人进一步取代人类:将进军白领任务
中移动推动感地带3G网聊卡 火拼微信沃卡
苹果优势逐渐丧失 传即将推出廉价iPhone
苹果MacBook Air劣势渐显 或推新产品改变命运
苹果股价突破100美元大关:投资者看好iPhone 6
智能手机:中国手机市场最受关注十五款产品清点