search
HomeWeb Front-endJS TutorialLearn to write js Calender calendar control together

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:

一起学写js Calender日历控件

<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:&#39;1px solid green&#39;,
        width:&#39;400px&#39;,
        height:&#39;200px&#39;,
        backgroundColor:&#39;lightgrey&#39;,
        fontColor:&#39;blue&#39;
      }
    },
    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=&#39;<table>&#39;;
       tablestr+=&#39;<tr><td colspan="3"></td><td>年:&#39;+this.year+&#39;</td><td colspan="3">月:&#39;+this.month+&#39;</td></tr>&#39;;
      tablestr+=&#39;<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>&#39;;
      var index=1;
      //判断每月的第一天在哪个位置
      var style=&#39;&#39;;
      if(this.weekstart<7)
      {
        tablestr+=&#39;<tr>&#39;;
         for (var i = 0; i <this.weekstart; i++) {
           tablestr+=&#39;<td></td>&#39;;
         };
         for (var i = 0; i < 7-this.weekstart; i++) {
          style=this.day==(i+1)?"background-Color:green;":"";
           index++;
           tablestr+=&#39;<td style="&#39;+style+&#39;" val=&#39;+(this.year+&#39;-&#39;+this.month+&#39;-&#39;+(i+1))+&#39;>&#39;+(i+1)+&#39;</td>&#39;;
         };
        tablestr+=&#39;</tr>&#39;;
 
      }
      ///剩余天数对应的位置
 
      //判断整数行并且对应相应的位置
      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+=&#39;<tr>&#39;;
         for (var k = 0; k < 7; k++) {
           style=this.day==(index+k)?"background-Color:green;":"";
           tablestr+=&#39;<td style="&#39;+style+&#39;" val=&#39;+(this.year+&#39;-&#39;+this.month+&#39;-&#39;+(index+k))+&#39;>&#39;;
           tablestr+=index+k;
           tablestr+=&#39;</td>&#39;;
         };
         tablestr+=&#39;</tr>&#39;;
         index+=7;
      };
 
      //最后剩余的天数对应的位置(不能填充一周的那几天)
      var remaincols=this.monthdays-(index-1);
      tablestr+=&#39;<tr>&#39;;
      for (var i = 0; i < remaincols; i++) {
        style=this.day==index?"background-Color:green;":"";
        tablestr+=&#39;<td style="&#39;+style+&#39;" val=&#39;+(this.year+&#39;-&#39;+this.month+&#39;-&#39;+(index))+&#39;>&#39;;
        tablestr+=index;
        tablestr+=&#39;</td>&#39;;
        index++;
      };
      tablestr+=&#39;</tr>&#39;;
      tablestr+=&#39;</table>&#39;;
      return tablestr;
    },
    Render:function(){
      var calenderDiv=document.createElement(&#39;div&#39;);
      calenderDiv.style.border=this.options.border;
      calenderDiv.style.width=this.options.width;
      calenderDiv.style.height=this.options.height;
      calenderDiv.style.cursor=&#39;pointer&#39;;
      calenderDiv.style.backgroundColor=this.options.backgroundColor;
      // calenderDiv.style.color=this.options.fontColor;
      calenderDiv.style.color=&#39;red&#39; ;
 
      calenderDiv.onclick=function(e){
        var evt=e||window.event;
        var  target=evt.srcElement||evt.target;
 
        if(target&&target.getAttribute(&#39;val&#39;))
        {
 
          alert(target.getAttribute(&#39;val&#39;));
        }
       
      }
      var tablestr=this.View();
      this.tablestr=tablestr;
      calenderDiv.innerHTML=tablestr;
      var div=document.createElement(&#39;div&#39;);
      div.style.width=&#39;auto&#39;;
      div.style.height=&#39;auto&#39;;
       div.appendChild(calenderDiv);
 
       ///翻页div
      var pagerDiv=document.createElement(&#39;div&#39;);
      pagerDiv.style.width=&#39;auto&#39;;
      pagerDiv.style.height=&#39;auto&#39;;
 
        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(&#39;input&#39;);
       preBtn.type=&#39;button&#39;;
       preBtn.value=&#39;<&#39;;
 
       preBtn.onclick=function(){
           that.containerDiv.removeChild(div);
           resetPara(that.year,that.month-2,that.day);
           that.Render();
 
       }
       //下一页
       var nextBtn=document.createElement(&#39;input&#39;);
       nextBtn.type=&#39;button&#39;;
       nextBtn.value=&#39;>&#39;;
      
       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(&#39;div&#39;);
       var  dropdivstr=&#39;&#39;;
       //选择年份
       dropdivstr+=&#39;<select id="ddlYear">&#39;;
       for (var i = 1900; i <= 2100; i++) {
        dropdivstr+= 
        i==that.year
        ?&#39;<option value="&#39;+i+&#39;" selected="true">&#39;+i+&#39;</option>&#39;
        : &#39;<option value="&#39;+i+&#39;">&#39;+i+&#39;</option>&#39;;
       };
       dropdivstr+=&#39;</select>&#39;;
       
      //选择月份
      dropdivstr+=&#39;<select id="ddlMonth">&#39;;
       for (var i = 1; i <= 12; i++) {
        dropdivstr+=
        i==that.month
        ?&#39;<option value="&#39;+i+&#39;" selected="true">&#39;+i+&#39;</option>&#39;
        : &#39;<option value="&#39;+i+&#39;">&#39;+i+&#39;</option>&#39;;
       };
       dropdivstr+=&#39;</select>&#39;;
       dropDiv.innerHTML=dropdivstr;
       div.appendChild(dropDiv);
      that.containerDiv.appendChild(div);
   
 
       ///绑定选择年份和月份的事件
       var ddlChange=function(){
           var ddlYear=document.getElementById(&#39;ddlYear&#39;);
          var ddlMonth=document.getElementById(&#39;ddlMonth&#39;);
          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(&#39;dvTest&#39;,{
        border:&#39;1px solid green&#39;,
        width:&#39;400px&#39;,
        height:&#39;200px&#39;,
        backgroundColor:&#39;&#39;
        }
        );
  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!


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Is JavaScript Written in C? Examining the EvidenceIs JavaScript Written in C? Examining the EvidenceApr 25, 2025 am 12:15 AM

Yes, the engine core of JavaScript is written in C. 1) The C language provides efficient performance and underlying control, which is suitable for the development of JavaScript engine. 2) Taking the V8 engine as an example, its core is written in C, combining the efficiency and object-oriented characteristics of C. 3) The working principle of the JavaScript engine includes parsing, compiling and execution, and the C language plays a key role in these processes.

JavaScript's Role: Making the Web Interactive and DynamicJavaScript's Role: Making the Web Interactive and DynamicApr 24, 2025 am 12:12 AM

JavaScript is at the heart of modern websites because it enhances the interactivity and dynamicity of web pages. 1) It allows to change content without refreshing the page, 2) manipulate web pages through DOMAPI, 3) support complex interactive effects such as animation and drag-and-drop, 4) optimize performance and best practices to improve user experience.

C   and JavaScript: The Connection ExplainedC and JavaScript: The Connection ExplainedApr 23, 2025 am 12:07 AM

C and JavaScript achieve interoperability through WebAssembly. 1) C code is compiled into WebAssembly module and introduced into JavaScript environment to enhance computing power. 2) In game development, C handles physics engines and graphics rendering, and JavaScript is responsible for game logic and user interface.

From Websites to Apps: The Diverse Applications of JavaScriptFrom Websites to Apps: The Diverse Applications of JavaScriptApr 22, 2025 am 12:02 AM

JavaScript is widely used in websites, mobile applications, desktop applications and server-side programming. 1) In website development, JavaScript operates DOM together with HTML and CSS to achieve dynamic effects and supports frameworks such as jQuery and React. 2) Through ReactNative and Ionic, JavaScript is used to develop cross-platform mobile applications. 3) The Electron framework enables JavaScript to build desktop applications. 4) Node.js allows JavaScript to run on the server side and supports high concurrent requests.

Python vs. JavaScript: Use Cases and Applications ComparedPython vs. JavaScript: Use Cases and Applications ComparedApr 21, 2025 am 12:01 AM

Python is more suitable for data science and automation, while JavaScript is more suitable for front-end and full-stack development. 1. Python performs well in data science and machine learning, using libraries such as NumPy and Pandas for data processing and modeling. 2. Python is concise and efficient in automation and scripting. 3. JavaScript is indispensable in front-end development and is used to build dynamic web pages and single-page applications. 4. JavaScript plays a role in back-end development through Node.js and supports full-stack development.

The Role of C/C   in JavaScript Interpreters and CompilersThe Role of C/C in JavaScript Interpreters and CompilersApr 20, 2025 am 12:01 AM

C and C play a vital role in the JavaScript engine, mainly used to implement interpreters and JIT compilers. 1) C is used to parse JavaScript source code and generate an abstract syntax tree. 2) C is responsible for generating and executing bytecode. 3) C implements the JIT compiler, optimizes and compiles hot-spot code at runtime, and significantly improves the execution efficiency of JavaScript.

JavaScript in Action: Real-World Examples and ProjectsJavaScript in Action: Real-World Examples and ProjectsApr 19, 2025 am 12:13 AM

JavaScript's application in the real world includes front-end and back-end development. 1) Display front-end applications by building a TODO list application, involving DOM operations and event processing. 2) Build RESTfulAPI through Node.js and Express to demonstrate back-end applications.

JavaScript and the Web: Core Functionality and Use CasesJavaScript and the Web: Core Functionality and Use CasesApr 18, 2025 am 12:19 AM

The main uses of JavaScript in web development include client interaction, form verification and asynchronous communication. 1) Dynamic content update and user interaction through DOM operations; 2) Client verification is carried out before the user submits data to improve the user experience; 3) Refreshless communication with the server is achieved through AJAX technology.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version