1234567891011121314151617181920212223242526272829303132333435id="cldFrame"id="cldBody"colspan="7"id="top"id="left"<id="topDate"id="right">id="week"日一二三四五六id="tbody"<!-- <td id="GD7"><font id="SD7" size="2" face="Arial Black" color="red" title="" class=""> 5 < /font><br><font id="LD7" size="2" style="font-size:9pt"></font></td> -->
1234567891011121314151617181920212223242526272829303132333435363738394041#cldFrame {position:relative;width:600px;margin:50px auto;}#cldBody {margin:10px;position:absolute;width:600px;}#top {font-family:'微软雅黑';position:relative;height:40px;text-align:center;line-height:40px;}#topDate {font-size:17px;font-weight:700;}.curDate {color:red;font-weight:bold;}table {background-color:#f7f7f7;}#week td {font-size:9px;color:#797979;}td {height:30px;width:30px;text-align:center;font-family:'微软雅黑';font-size:15px;}#left,#right {position:absolute;
12345678910111213141516171819202122232425262728293031323334353637383940414243/*判断某年是否是闰年*/function isLeap(year) {if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {return true;} else {return false;}}var monthDay = [31, 0, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];/*判断某年某月某日是星期几,默认日为1号*/function whatDay(year, month, day = 1) {var sum = 0;sum += (year - 1) * 365 + Math.floor((year - 1) / 4) - Math.floor((year - 1) / 100) + Math.floor((year - 1) / 400) +day;for (var i = 0; i < month - 1; i++) {sum += monthDay[i];}if (month > 2) {if (isLeap(year)) {sum += 29;} else {sum += 28;}}return sum % 7; //余数为0代表那天是周日,为1代表是周一,以此类推}/*显示日历*/function showCld(year, month, firstDay) {var i;var tagClass = "";var nowDate = new Date();var days; //从数组里取出该月的天数if (month == 2) {if (isLeap(year)) {days = 29;} else {days = 28;}} else {days = monthDay[month - 1];
更新时间:2020-04-30 00:27:29
简单的日历插件(html+css+js)效果