Recently I looked at some functions about js date, and suddenly thought of the calendar control, so I tried to write one. As a background programmer, my level is limited. Please take a look at this example I wrote with a learning attitude. , learn and progress together!
First a commonly used date function:
Date(year,month,day)
var date=new Date();
Get the year
var year=this.date.getFullYear();
Get the month, here is the month index, so +1
var month=this. date.getMonth()+1;
Get the day of the week
var day=this.date.getDate();
Get the day of the week , return 0. Sunday 1. Monday 2. Tuesday 3. Wednesday 4. Thursday 5. Friday 6. Saturday
var week=this.date.getDay();
Get the day of the week that the first of the month is
var getWeekDay=function(year,month,day){ var date=new Date(year,month,day); return date.getDay(); } var weekstart= getWeekDay(this.year, this.month-1, 1)
Get the number of days of the month
var getMonthDays=function(year,month){ var date=new Date(year,month,0); return date.getDate(); } var monthdays= this.getMonthDays(this.year,this.month);
Okay, there are so many parameters we use, and the following is actually about the day of the week that the date corresponds to Operation and judgment, dynamic splicing tags, I will directly post the example I wrote below:
Rendering:
<html> <meta http-equiv="content-type" content="text/html;charset=utf-8"> <head> <style type="text/css"> td{ text-align: center;} </style> <script type="text/javascript"> window.onload=function(){ var Calender=function(){ this.Init.apply(this,arguments); } Calender.prototype={ Init:function(container,options){ this.date=new Date(); this.year=this.date.getFullYear(); this.month=this.date.getMonth()+1; this.day=this.date.getDate(); this.week=this.date.getDay(); this.weekstart=this.getWeekDay(this.year, this.month-1, 1); this.monthdays= this.getMonthDays(this.year,this.month); this.containerDiv=document.getElementById(container); this.options=options!=null?options:{ border:'1px solid green', width:'400px', height:'200px', backgroundColor:'lightgrey', fontColor:'blue' } }, getMonthDays:function(year,month){ var date=new Date(year,month,0); return date.getDate(); }, getWeekDay:function(year,month,day){ var date=new Date(year,month,day); return date.getDay(); }, View:function(){ var tablestr='<table>'; tablestr+='<tr><td colspan="3"></td><td>年:'+this.year+'</td><td colspan="3">月:'+this.month+'</td></tr>'; tablestr+='<tr><td width="14%">日</td><td width="14%">一</td><td width="14%">二</td><td width="14%">三</td><td width="14%">四</td><td width="14%">五</td><td width="14%">六</td></tr>'; var index=1; //判断每月的第一天在哪个位置 var style=''; if(this.weekstart<7) { tablestr+='<tr>'; for (var i = 0; i <this.weekstart; i++) { tablestr+='<td></td>'; }; for (var i = 0; i < 7-this.weekstart; i++) { style=this.day==(i+1)?"background-Color:green;":""; index++; tablestr+='<td style="'+style+'" val='+(this.year+'-'+this.month+'-'+(i+1))+'>'+(i+1)+'</td>'; }; tablestr+='</tr>'; } ///剩余天数对应的位置 //判断整数行并且对应相应的位置 var remaindays=this.monthdays-(7-this.weekstart); var row=Math.floor(remaindays%7==0?remaindays/7:((remaindays/7)+1)) ; var count=Math.floor(remaindays/7); for (var i = 0; i < count; i++) { tablestr+='<tr>'; for (var k = 0; k < 7; k++) { style=this.day==(index+k)?"background-Color:green;":""; tablestr+='<td style="'+style+'" val='+(this.year+'-'+this.month+'-'+(index+k))+'>'; tablestr+=index+k; tablestr+='</td>'; }; tablestr+='</tr>'; index+=7; }; //最后剩余的天数对应的位置(不能填充一周的那几天) var remaincols=this.monthdays-(index-1); tablestr+='<tr>'; for (var i = 0; i < remaincols; i++) { style=this.day==index?"background-Color:green;":""; tablestr+='<td style="'+style+'" val='+(this.year+'-'+this.month+'-'+(index))+'>'; tablestr+=index; tablestr+='</td>'; index++; }; tablestr+='</tr>'; tablestr+='</table>'; return tablestr; }, Render:function(){ var calenderDiv=document.createElement('div'); calenderDiv.style.border=this.options.border; calenderDiv.style.width=this.options.width; calenderDiv.style.height=this.options.height; calenderDiv.style.cursor='pointer'; calenderDiv.style.backgroundColor=this.options.backgroundColor; // calenderDiv.style.color=this.options.fontColor; calenderDiv.style.color='red' ; calenderDiv.onclick=function(e){ var evt=e||window.event; var target=evt.srcElement||evt.target; if(target&&target.getAttribute('val')) { alert(target.getAttribute('val')); } } var tablestr=this.View(); this.tablestr=tablestr; calenderDiv.innerHTML=tablestr; var div=document.createElement('div'); div.style.width='auto'; div.style.height='auto'; div.appendChild(calenderDiv); ///翻页div var pagerDiv=document.createElement('div'); pagerDiv.style.width='auto'; pagerDiv.style.height='auto'; var that=this; ///重新设置参数 var resetPara=function(year,month,day){ that.date=new Date(year,month,day); that.year=that.date.getFullYear(); that.month=that.date.getMonth()+1; that.day=that.date.getDate(); that.week=that.date.getDay(); that.weekstart=that.getWeekDay(that.year, that.month-1, 1); that.monthdays= that.getMonthDays(that.year,that.month); } //上一页 var preBtn=document.createElement('input'); preBtn.type='button'; preBtn.value='<'; preBtn.onclick=function(){ that.containerDiv.removeChild(div); resetPara(that.year,that.month-2,that.day); that.Render(); } //下一页 var nextBtn=document.createElement('input'); nextBtn.type='button'; nextBtn.value='>'; nextBtn.onclick=function(){ that.containerDiv.removeChild(div); resetPara(that.year,that.month,that.day); that.Render(); } pagerDiv.appendChild(preBtn); pagerDiv.appendChild(nextBtn); div.appendChild(pagerDiv); var dropDiv=document.createElement('div'); var dropdivstr=''; //选择年份 dropdivstr+='<select id="ddlYear">'; for (var i = 1900; i <= 2100; i++) { dropdivstr+= i==that.year ?'<option value="'+i+'" selected="true">'+i+'</option>' : '<option value="'+i+'">'+i+'</option>'; }; dropdivstr+='</select>'; //选择月份 dropdivstr+='<select id="ddlMonth">'; for (var i = 1; i <= 12; i++) { dropdivstr+= i==that.month ?'<option value="'+i+'" selected="true">'+i+'</option>' : '<option value="'+i+'">'+i+'</option>'; }; dropdivstr+='</select>'; dropDiv.innerHTML=dropdivstr; div.appendChild(dropDiv); that.containerDiv.appendChild(div); ///绑定选择年份和月份的事件 var ddlChange=function(){ var ddlYear=document.getElementById('ddlYear'); var ddlMonth=document.getElementById('ddlMonth'); var yearIndex=ddlYear.selectedIndex; var year=ddlYear.options[yearIndex].value; var monthIndex=ddlMonth.selectedIndex; var month=ddlMonth.options[monthIndex].value; that.containerDiv.removeChild(div); resetPara(year,month-1,that.day); that.Render(); } ddlYear.onchange=function(){ ddlChange(); } ddlMonth.onchange=function(){ ddlChange(); } } } var calender=new Calender('dvTest',{ border:'1px solid green', width:'400px', height:'200px', backgroundColor:'' } ); calender.Render(); } </script> </head> <body> <div id="dvTest"></div> </body> </html>
Code re- Changes were made, replacing the table of the view with a div, in order to solve the read-only problem of IE's tableinnerHTML. In addition, options are added for configurability.
The above code has a simple explanation. The function is the most basic. If you do it more in-depth, it can be expanded. I hope this article can give you some inspiration.
For more articles related to learning to write js Calender calendar control, please pay attention to the PHP Chinese website!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
