Every day a JS small demo calendar production. Key points of knowledge: date functions and flexible use of function encapsulation

Source: Internet
Author: User
Tags getdate time 0

<! DOCTYPE html>
<meta charset= "UTF-8" >
<title>Title</title>
<style>
TD {
Text-align:center;
}
</style>

<body>

<p>
<select id= "Yearselect" ></select>
<select id= "Monthselect" ></select>

<strong></strong>
</p>

<table id= "tab" width= "100%" border= "1" >
<thead>
<tr>
<th> Day </th>
<th> a </th>
<th> two </th>
<th> three </th>
<th> Four </th>
<th> Five </th>
<th> Six </th>
</tr>
</thead>
<tbody></tbody>
</table>

<script>
/*
* Gets the total number of days for the specified year month
* What is the first day of the month displayed?
* */

var yearselectelement = document.queryselector (' #yearSelect ');
var monthselectelement = document.queryselector (' #monthSelect ');
var tbody = document.queryselector (' tbody ');
var strongelement = document.queryselector (' strong ');

var nowdate = new Date ();

/*
* Dynamically generated option
* */
var html = ';
for (var i=1970; i<2100; i++) {
if (i = = Nowdate.getfullyear ()) {
html = ' <option selected> ' + i + ' </option> ' + html;
} else {
html = ' <option> ' + i + ' </option> ' + html;
}

}
yearselectelement.innerhtml = html;

var html = ';
for (var i=0; i<12; i++) {
if (i = = Nowdate.getmonth ()) {
HTML + = ' <option value= "' +i+ '" selected> ' + (i+1) + ' </option> ';
} else {
HTML + = ' <option value= "' +i+ '" > ' + (i+1) + ' </option> ';
}

}
monthselectelement.innerhtml = html;

/*
* Default display when the year before and month of the calendar
* */
Calendar (Nowdate.getfullyear (), Nowdate.getmonth ());

/*
* Regenerate calendar based on selected year and month
* */
Yearselectelement.onchange = Monthselectelement.onchange = function () {
Calendar (Yearselectelement.value, monthselectelement.value);
};

function calendar (year, month) {
Year = number (year);
month = number (month);
strongelement.innerhtml = year + ' years ' + (month+1) + ' month ';

var html = ' <tr> ';
for (var i=1; i<=42; i++) {

if (i%7 = = 1 && i! = 1) {
HTML + = ' </tr><tr> ';
}

var v = i-getfirstday (year, month);

if (V < 1 | | v > getDays (Year, month)) {
HTML + = ' <td>&nbsp;</td> ';
} else {
if (i% 7 = = 1 | | I% 7 = = 0) {
HTML + = ' <td style= "color:red" > ' + V + ' </td> ';
} else if (
Year = = Nowdate.getfullyear ()
&&
month = = Nowdate.getmonth ()
&&
v = = Nowdate.getdate ()
) {
HTML + = ' <td style= ' background:red; Color:white; " > ' + V + ' </td> ';
} else {
HTML + = ' <td> ' + V + ' </td> ';
}
}


}
HTML + = ' </tr> ';
tbody.innerhtml = html;
}

/*
* Gets the total number of days for the specified display year month
* */
function GetDays (y, m) {
return new Date (Y, m+1, 1,-1, 0, 0). GetDate ();

/*
* Get the 1st of next January, 1 time 0 minutes 0 seconds date
*-1: Actually the day before, that is, last month 23 o'clock
* */
var date = new Date (y, m+1, 1,-1, 0, 0);
/*
* Last month's date is actually the total number of days of last month
* */
return Date.getdate ();
}

/*
* Gets the day of the week that specifies the month of the year that is displayed
* */
function Getfirstday (y, m) {
return new Date (Y, M, 1). GetDay ();
}
</script>
</body>

Every day a JS small demo calendar production. Key points of knowledge: date functions and flexible use of function encapsulation

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.