js calendar function object_javascript skills
Problems caused by demand: I originally wanted to find a js code on the Internet, but found that it was either too complicated, difficult to control, or had poor compatibility...
Problem analysis: I found that it is either excellent or the best. ... What suits you is the best.
Problem solution: Decided to write a calendar function by myself.
Code presentation:
Calendar main program
var calendar={
STR:function(){with(this.data)return "" Y "year," M "month," D "number, week" WN[W];},
V: function(o,spli,sx){with(this)return o[sx]="" data.Y spli data.M spli data.D},
T:function(){with(this)return data. TABLE},
dnY:function(){with(this){calendarChange(data.Y 1,data.M-1,data.D)}},
dnM:function(){with(this) {calendarChange(data.Y,data.M,data.D)}},
upY:function(){with(this){calendarChange(data.Y-1,data.M-1,data.D) }},
upM:function(){with(this){calendarChange(data.Y,data.M-2,data.D)}},
day:function(o){with(this) {data.D=o;calendarChange(data.Y,data.M-1,data.D)}},
data:{Y:null,M:null,D:null,W:null,H: null,U:null,YMD:null,YMD_C:"hot",ARR:null,TABLE:null,MN:null,WN:null,SELECT:null,TADAY:new Date(),TADAY_C:"taday",ROWLEN :7,VALUE:null},
creatTable:function(){with(this){
var table="
" showText " | ";
data.TABLE=table;return table;
}},
calendarStarArr:function(userY,userM,userD){with(this){
var Arr=[];
var now = new Date(userY,userM,userD);
var LastDay = now.getLastDay();
var FirstDayofWeek = now.FirstDayofWeek();
data.YMD=now;data.Y=now.getFullYear( );
data.M=now.getMonth() 1;data.D=now.getDate();data.W=now.getDay();
while(Arr.length!=FirstDayofWeek){Arr .push(false)}
for(var i=0;i
data.ARR=Arr; return Arr;
}},
calendarChange:function(userY,userM,userD){with(this){
calendarStarArr(userY,userM ,userD);creatTable()
}},
calendarStar:function(userY,userM,userD){with(this){
data.MN = ["zero","one","two ","three","four","five","six","seven","eight","nine","ten","eleven","twelve"];
data. WN = ["日","一","二","三","四","五","六"];
calendarChange(userY,userM,userD);
}},
init:function(){with(this){
Date.prototype.getLastDay=function(){return(new Date(this.getFullYear(),this.getMonth() 1,0).getDate( ))}
Date.prototype.FirstDayofWeek=function(){return(new Date(this.getFullYear(),this.getMonth(),1).getDay())}
calendarStar(new Date() .getFullYear(),new Date().getMonth(),new Date().getDate())
}}
}
Code application explanation:
var aa=new calendar()//Create a new calendar
aa .init()//Calendar initialization
obj.innerHTML=aa.STR()//Display date string
obj.innerHTML=aa.T()//Display table
aa.dnY()//Next year
aa .upY()//Previous year
aa.dnM()//Next month
aa.upM()//Previous month
aa.day(Number)//Change the calendar display What number (Number needs to pass a numeric parameter)
This calendar object implements the core functions of the calendar,
specifically where the calendar is placed,
which event triggers which function I didn’t write this.
If that were the case, I would lose the original purpose of writing this calendar.
Why didn’t anyone respond? Let me give you an example. Let’s take a look.
<script> <br>var calendar={ <br>STR:function(){with(this.data)return "" Y "年," M "月," D "号,星期" WN[W];}, <br>V:function(spli){with(this)return "" data.Y spli data.M spli data.D}, <br>T:function(){with(this)return data.TABLE}, <br>dnY:function(){with(this){calendarChange(data.Y 1,data.M-1,data.D)}}, <br>dnM:function(){with(this){calendarChange(data.Y,data.M,data.D)}}, <br>upY:function(){with(this){calendarChange(data.Y-1,data.M-1,data.D)}}, <br>upM:function(){with(this){calendarChange(data.Y,data.M-2,data.D)}}, <br>day:function(o){with(this){data.D=o;calendarChange(data.Y,data.M-1,data.D)}}, <br>data:{Y:null,M:null,D:null,W:null,H:null,U:null,YMD:null,YMD_C:"hot",ARR:null,TABLE:null,MN:null,WN:null,SELECT:null,TADAY:new Date(),TADAY_C:"taday",ROWLEN:7,VALUE:null}, <br>creatTable:function(){with(this){ <br>var table="<table height=100% width=100%><tr>" <br>for(var i=0;i<data.ROWLEN;i ){var t=data.WN[i]||" ";table ="<th>" t "</th>";} <br>for(var i in data.ARR){var showText=data.ARR[i]||" ",br=i�ta.ROWLEN,title,css=""; <br>if(!br){table ="</tr><tr>"}; <br>data.ARR[i]?title=data.Y "-" data.M "-" showText:title=""; <br>if(String(data.D)==String(data.ARR[i])){css =" " data.YMD_C;} <br>if(data.YMD.getFullYear()==data.TADAY.getFullYear()&&data.YMD.getMonth()==data.TADAY.getMonth()&&String(data.TADAY.getDate())==String(data.ARR[i])){css=" " data.TADAY_C} <br>table ="<td title='" title "' class=" css ">" showText "</td>"; <br>}table ="</tr></table>" <br>data.TABLE=table;return table; <br>}}, <br>calendarStarArr:function(userY,userM,userD){with(this){ <br>var Arr=[]; <br>var now = new Date(userY,userM,userD); <br>var LastDay = now.getLastDay(); <br>var FirstDayofWeek = now.FirstDayofWeek(); <br>data.YMD=now;data.Y=now.getFullYear(); <br>data.M=now.getMonth() 1;data.D=now.getDate();data.W=now.getDay(); <br>while(Arr.length!=FirstDayofWeek){Arr.push(false)} <br>for(var i=0;i<LastDay;i ){Arr.push(i 1)} <BR>while(Arr.length�ta.ROWLEN!=0){Arr.push(false)} <BR>data.ARR=Arr;return Arr; <BR>}}, <BR>calendarChange:function(userY,userM,userD){with(this){ <BR>calendarStarArr(userY,userM,userD);creatTable() <BR>}}, <BR>calendarStar:function(userY,userM,userD){with(this){ <BR>data.MN = ["零","一","二","三","四","五","六","七","八","九","十","十一","十二"]; <BR>data.WN = ["日","一","二","三","四","五","六"]; <BR>calendarChange(userY,userM,userD); <BR>}}, <BR>init:function(){with(this){ <BR>Date.prototype.getLastDay=function(){return(new Date(this.getFullYear(),this.getMonth() 1,0).getDate())} <BR>Date.prototype.FirstDayofWeek=function(){return(new Date(this.getFullYear(),this.getMonth(),1).getDay())} <BR>calendarStar(new Date().getFullYear(),new Date().getMonth(),new Date().getDate()) <BR>}} <BR>}<BR></script>
| |||
<script> <br>calendar.init() <br>function calendarChange(){ <br>var calendar_body=document.getElementById("calendar_body") <br>calendar_body.innerHTML=calendar.T()//显示表格 <br>var calendar_str=document.getElementById("calendar_str") <br>calendar_str.innerHTML=calendar.STR()//显示日期字符串 <br>calendarControl()//调用日历控制 <br>} <br>calendarChange()//日历更新 <br>function calendarControl(){ <br>var calendar_str=document.getElementById("calendar_str") <br>calendar_str.onclick=function(){ calendar.init();calendarChange()}//返回今天功能实现 <br>var calendar_dnY=document.getElementById("calendar_dnY") <br>calendar_dnY.onclick=function(){ calendar.dnY();calendarChange()}//下一年 功能实现 <br>var calendar_dnM=document.getElementById("calendar_dnM") <br>calendar_dnM.onclick=function(){ calendar.dnM();calendarChange()}//下一月 功能实现 <br>var calendar_upY=document.getElementById("calendar_upY") <br>calendar_upY.onclick=function(){ calendar.upY();calendarChange()}//上一年 功能实现 <br>var calendar_upM=document.getElementById("calendar_upM") <br>calendar_upM.onclick=function(){ calendar.upM();calendarChange()}//上一月 功能实现 <br>var calendar_day=document.getElementById("calendar_body").getElementsByTagName("td"); <br>for(var i in calendar_day){calendar_day[i].onclick=function(){var N=Number(this.innerText);if(N){calendar.day(N);calendarChange()}}}//当天日期 功能实现 <br>} <br></script>

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

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

An important tool for organizing your daily work and routine in Windows 11 is the display of time and date in the taskbar. This feature is usually located in the lower right corner of the screen and gives you instant access to the time and date. By clicking this area, you can bring up your calendar, making it easier to check upcoming appointments and dates without having to open a separate app. However, if you use multiple monitors, you may run into issues with this feature. Specifically, while the clock and date appear on the taskbar on all connected monitors, the ability to click the date and time on a second monitor to display the calendar is unavailable. As of now, this feature only works on the main display - it's unlike Windows 10, where clicking on any

Many users want to use the win10 calendar tool to check the current number of days, but the calendar does not automatically display this function. In fact, we only need to make simple settings to see the cumulative number of weeks this year ~ win10 calendar displays weeks Digital setting tutorial: 1. Enter calendar in the search in the lower left corner of the desktop and open the application. 2. In the open calendar application, click the "gear" icon in the lower left corner, and the settings will pop up on the right. We click "Calendar Settings" 3. Continue in the open calendar settings, find "Week Number" and then change the week Just adjust the number option to "the first day of the year". 4. After completing the above settings, click "Week" to see this year's week number statistics.

If your Outlook calendar cannot sync with Google Calendar, Teams, iPhone, Android, Zoom, Office account, etc., please follow the steps below to resolve the issue. The calendar app can be connected to other calendar services such as Google Calendar, iPhone, Android, Microsoft Office 365, etc. This is very useful because it can sync automatically. But what if OutlookCalendar fails to sync with third-party calendars? Possible reasons could be selecting the wrong calendar for synchronization, calendar not visible, background application interference, outdated Outlook application or calendar application, etc. Preliminary fix for Outlook calendar not syncing

The calendar can help users record your schedule and even set reminders. However, many users are asking what to do if calendar event reminders do not pop up in Windows 10? Users can first check the Windows update status or clear the Windows App Store cache to perform the operation. Let this site carefully introduce to users the analysis of the problem of Win10 calendar event reminder not popping up. To add calendar events, click the "Calendar" program in the system menu. Click the left mouse button on a date in the calendar. Enter the event name and reminder time in the editing window, and click the "Save" button to add the event. Solving the problem of win10 calendar event reminder not popping up

The Lost Purchasing Office is confirmed to be updated at 11 am on February 28th. Players can go to Taobao to search the Purchasing Office and select the store category to purchase. This time we bring you the MBCC birthday party series and 2024 Desk Calendar peripherals. Come together. Take a look at the product details this time. No Period Lost Purchasing Office: New calendar and birthday series peripherals! There is something new in the Lost Procurement Office! - Pre-sale time: February 28, 2024 11:00 - March 13, 2024 23:59 Purchase address: Taobao search [Unexpected Lost Purchasing Office] Select [Store] category to enter the store for purchase; peripheral introduction: The new peripherals released this time are MBCC birthday party series and 2024 desk calendar peripherals. Please click on the long image for details. The Purchasing Office introduces new peripherals—MBCC students

Some friends who use the win0 system have encountered the situation where the win10 calendar cannot be opened. This is just a normal computer glitch. It can be solved in the privacy settings of the win10 system. Today, the editor has brought a detailed solution. Below Let’s take a look. Solution to the problem that the calendar cannot be opened in the lower right corner of win10 1. Click Start in the win10 system → click the program list button above → find Pinyin (Chinese) R → Calendar 2. When using it for the first time, new events may not be opened (mouse If you lean up, there will be no dark blue selected), you can set it in privacy. Click the three-bar icon in the upper left corner of the desktop → there will be a settings menu at the bottom; 3. Click Privacy in the pop-up interface; 4. If you have used settings before, you can click on the left

If your Windows 11 computer displays the wrong time, it can cause a lot of problems and even prevent you from connecting to the internet. In fact, some applications refuse to open or run when the system displays an incorrect date and time. So how should this problem be solved? Let’s take a look below! Method 1: 1. We first right-click on the blank space of the taskbar below and select Taskbar Settings 2. Find taskbarcorneroverflow3 on the right in the taskbar settings, then find clock or clock above it and select to turn it on. Method 2: 1. Press the keyboard shortcut win+r to call up run, enter regedit and press Enter to confirm. 2. Open the Registry Editor and find HKEY in it

As an email manager application, Microsoft Outlook allows us to schedule events and appointments. It enables us to stay organized by providing tools to create, manage and track these activities (also called events) in the Outlook application. However, sometimes unwanted events are added to the calendar in Outlook, which creates confusion for users and spams the calendar. In this article, we will explore various scenarios and steps that can help us prevent Outlook from automatically adding events to my calendar. Outlook Events – A brief overview Outlook events serve multiple purposes and have many useful features as follows: Calendar Integration: In Outlook
