웹 프론트엔드 JS 튜토리얼 jQuery로 작성된 캘린더(캘린더 스타일 및 기능 포함)_jquery

jQuery로 작성된 캘린더(캘린더 스타일 및 기능 포함)_jquery

May 16, 2016 pm 05:35 PM
jquery 달력

复代码码 代码如下:



<머리>

<제목>



<본문>

사용:



按钮调용:id="button" type= "button" onclick="c.showMoreDay = true; c.show(getObjById('btntxt'), '1982-1-1', this)" />


id="button3" type="button" onclick="c.showMoreDay = true; c.show(this, getObjById('btntxt3'))" />




需要的jQuery文件
复代代码 代码如下:

function Calendar(objName)
{
this.style = {
borderColor : "#909eff", //边框颜色
headerBackColor : "#909EFF", //表头背景颜色
headerFontColor : "#ffffff", //表头字体颜色
bodyBarBackColor : "#f4f4f4", //日历标题背景色
bodyBarFontColor : "#000000", //日历标题字体色
bodyBackColor : "#ffffff", //日历背景色
bodyFontColor : "#000000", //日历字体色
bodyHolidayFontColor : "#ff0000", //假日字体色
watermarkColor : "#d4d4d4", //背景水印色
moreDayColor : "#cccccc"
};
this.showMoreDay = false; //是否显示上月和下月的日期
this.Obj = objName;
this.date = null;
this.mouseOffset = null;
this.dateInput = null;
this.timer = null;
};
Calendar.prototype.toString = function()
{
var str = this.getStyle();
str += '';
str을 반환합니다;
};
Calendar.prototype.getStyle = function()
{
var str = 'n';
str을 반환합니다;
};
Calendar.prototype.getHeader = function()
{
var str = '< tr Author="alin" align="center">n';
str = 'n';
str = 'n';
str = 'n';
str = 'n';
str = 'n';
str = 'n';
str = '
<<<00>>>
n';
str을 반환합니다;
};
Calendar.prototype.getBody = function()
{
var n = 0;
var str = this.getBodyBar();
str = 'n';
for(i = 0; i {
str = '';
for(j = 0; j {
str = 'n';
}
str = '';
}
str = 'n';
str = '
str을 반환합니다;
};
Calendar.prototype.getBodyBar = function()
{
var str = '
今천:' new Date().toFormatString("yyyy年mm月dd日") '
n';
var day = new Array('日','一','이','삼','사','五','六');
for(i = 0; i {
str = 'n';
}
str = '
' 일[i] '
';
str을 반환합니다;
}
Calendar.prototype.getYearMenu = 함수(연도)
{
var str = 'n ';
for(i = 0; i {
var _year = 연도 i;
var _date = new Date(_year,this.date.getMonth(),this.date.getDate());
str = 'n';
str = '';
}
str = 'n';
str = '';
var _menu = getObjById("cdrMenu");
_menu.innerHTML = str;
};
Calendar.prototype.getMonthMenu = function()
{
var str = '
if(this.date.getFullYear() != _year)
{
str = 'onmouseover="this.className='menuOver'" onmouseout="this.className=''" ';
}
else
{
str = 'class="menuOver"';
}
str = 'onclick="' this.Obj '.bindDate('' _date.toFormatString("-") '')">' _연도 '年
n';
str = 'n';
str = 'n';
str = '
<<>>
n' ;
for(i = 1; i <= 12; i )
{
var _date = new Date(this.date.getFullYear(),i-1,this.date.getDate()) ;
str = 'n';
}
str = '';
var _menu = getObjById("cdrMenu");
_menu.innerHTML = str;
};
Calendar.prototype.show = function()
{
if (arguments.length > 3 ||args.length == 0)
{
alert("对不起!传入参数不对!" );
return;
}
var _date = null;
var _evObj = null;
var _initValue = null
for(i = 0; i < 인수.길이 ; i )
{
if(typeof(arguments[i]) == "객체" && 인수[i].type == "text")
{_date = 인수[i];}
else if(typeof(arguments[i]) == "객체")
{_evObj = 인수[i];}
else if(typeof(arguments[i]) == "문자열")
{_initValue = 인수[i];}
}
_evObj = _evObj || _date;
inputObj = _date;
targetObj = _evObj
if(!_date){alert("传入参数错误!"); return;}
this.dateInput = _date;
_date = _date.value;
if(_date == "" && _initValue) _date = _initValue;
this .bindDate(_date);
var _target = getPosition(_evObj);
var _obj = getObjById("Calendar");
_obj.style.display = ""; = _target.x 'px';
if((document.body.clientHeight - (_target.y _evObj.clientHeight)) >= _obj.clientHeight)
{
_obj.style.top = ( _target.y _evObj.clientHeight) 'px';
}
else
{
_obj.style.top = (_target.y - _obj.clientHeight) 'px';
}
};
Calendar.prototype.hide = function()
{
var obj = getObjById("Calendar");
obj.style.display = "없음";
};
Calendar.prototype.bindDate = 함수(날짜)
{
var _monthDays = 새 배열(31,30,31,30,31,30,31,31,30,31,30,31) ;
var _arr = date.split('-');
var _date = new Date(_arr[0],_arr[1]-1,_arr[2]);
if(isNaN(_date)) _date = new Date();
this.date = _date;
this.bindHeader();
var _year = _date.getFullYear();
var _month = _date.getMonth();
var _day = 1;
var _startDay = new Date(_year,_month,1).getDay();
var _previYear = _month == 0 ? _년 - 1 : _년;
var _previMonth = _month == 0 ? 11 : _월 - 1;
var _previDay = _monthDays[_previMonth];
if (_previMonth == 1) _previDay =((_previYear%4==0)&&(_previYear0!=0)||(_previYear@0==0))?29:28;
_previDay -= _startDay - 1;
var _nextDay = 1;
_monthDays[1] = ((_year%4==0)&&(_year0!=0)||(_year@0==0))?29:28;
for(i = 0; i {
var _dayElement = getObjById("cdrDay" i);
_dayElement.onmouseover = Function(this.Obj ".onMouseOver(this)");
_dayElement.onmouseout = Function(this.Obj ".onMouseOut(this)");
_dayElement.onclick = Function(this.Obj ".onClick(this)");
this.onMouseOut(_dayElement);
_dayElement.style.color = "";
if(i < _startDay)
{
//获取上一个月적일期
if(this.showMoreDay)
{
var _previDate = new Date(_year,_month) - 1,_previDay);
_dayElement.innerHTML = _previDay;
_dayElement.title = _previDate.toFormatString("yyyy年mm月dd日");
_dayElement.value = _previDate.toFormatString("-");
_dayElement.style.color = this.style.moreDayColor;
_previDay ;
}else
{
_dayElement.innerHTML = "";
_dayElement.title = "";
}
}
else if(_day > _monthDays[_month])
{
//获取下个月的日期
if(this.showMoreDay)
{
var _nextDate = new Date(_year,_month 1,_nextDay);
_dayElement.innerHTML = _nextDay;
_dayElement.title = _nextDate.toFormatString("yyyy年mm月dd日");
_dayElement.value = _nextDate.toFormatString("-");
_dayElement.style.color = this.style.moreDayColor;
_다음날 ;
}else
{
_dayElement.innerHTML = "";
_dayElement.title = "";
}
}
else if(i >= new Date(_year,_month,1).getDay() && _day <= _monthDays[_month])
{
//获取本月日期
_dayElement.innerHTML = _day;
if(_day == _date.getDate())
{
this.onMouseOver(_dayElement);
_dayElement.onmouseover = 함수("");
_dayElement.onmouseout = 함수("");
}
if(this.isHoliday(_year,_month,_day))
{
_dayElement.style.color = this.style.bodyHolidayFontColor;
}
var _curDate = new Date(_년, _월, _일);
_dayElement.title = _curDate.toFormatString("yyyy年mm月dd日");
_dayElement.value = _curDate.toFormatString("-");
_일 ;
}
else
{
_dayElement.innerHTML = "";
_dayElement.title = "";
}
}
var _menu = getObjById("cdrMenu");
_menu.style.display = "없음";
};
Calendar.prototype.bindHeader = function()
{
var _curYear = getObjById("currentYear");
var _curMonth = getObjById("currentMonth");
var _watermark = getObjById("cdrWatermark");
_curYear.innerHTML = this.date.toFormatString("yyyy年");
_curMonth.innerHTML = this.date.toFormatString("mm월");
_watermark.innerHTML = this.date.getFullYear();
};
Calendar.prototype.getToday = function()
{
var _date = new Date();
this.bindDate(_date.toFormatString("-"));
};
Calendar.prototype.isHoliday = 함수(년,월,일)
{
var _date = new Date(년,월,일);
return (_date.getDay() == 6 || _date.getDay() == 0);
};
Calendar.prototype.onMouseOver = function(obj)
{
obj.className = "dayOver";
};
Calendar.prototype.onMouseOut = function(obj)
{
obj.className = "dayOut";
};
Calendar.prototype.onClick = function(obj)
{
if(obj.innerHTML != "") this.dateInput.value = obj.value;
this.hide();
};
Calendar.prototype.onChangeYear = function(isnext)
{
var _year = this.date.getFullYear();
var _month = this.date.getMonth() 1;
var _date = this.date.getDate();
if(_연도 > 999 && _연도 <10000)
{
if(isnext){_year ;}else{ _year --;}
}
else
{
alert("年份超流范围(1000-9999)!");
}
this.bindDate(_연도 '-' _월 '-' _date);
};
Calendar.prototype.onChangeMonth = function(isnext)
{
var _year = this.date.getFullYear();
var _month = this.date.getMonth() 1;
var _date = this.date.getDate();
if(isnext){ _month ;} else {_month--;}
if(_year > 999 && _year <10000)
{
if(_month < 1) {_month = 12; _년--;}
if(_month > 12) {_month = 1; _연도 ;}
}
else
{
alert("年份超出范围(1000-9999)!");
}
this.bindDate(_연도 '-' _월 '-' _date);
};
Calendar.prototype.showMenu = 함수(isyear)
{
var _menu = getObjById("cdrMenu");
if(isyear != null)
{
var _obj = (isyear)? getObjById("현재연도") : getObjById("현재월");
if(isyear)
{
this.getYearMenu(this.date.getFullYear() - 5);
}
else
{
this.getMonthMenu();
}
_menu.style.top = (_obj.offsetTop _obj.offsetHeight) 'px';
_menu.style.left = _obj.offsetLeft 'px';
_menu.style.width = _obj.offsetWidth 'px';
}
if (this.timer != null)clearTimeout(this.timer);
_menu.style.display="";
}
Calendar.prototype.hideMenu = function()
{
var _obj = getObjById("cdrMenu");
this.timer = window.setTimeout(function(){_obj.style.display='none';},500);
}
Number.prototype.NaN0 = function()
{
return isNaN(this) ? 0 : 이것;
}
Date.prototype.toFormatString = function(fs)
{
if(fs.length == 1)
{
return this.getFullYear() fs (this. getMonth() 1) fs this.getDate();
}
fs = fs.replace("yyyy",this.getFullYear());
fs = fs.replace("mm",(this.getMonth() 1));
fs = fs.replace("dd",this.getDate());
fs를 반환합니다.
}
var inputObj = null;
var targetObj = null;
var dragObj = null;
var mouseOffset = null;
function getObjById(obj)
{
if(document.getElementByIdx_x)
{
return document.getElementByIdx_x(obj);
}
else
{
alert("浏览器不支持!");
}
}
function mouseCoords(ev)
{
if(ev.pageX || ev.pageY){
return {x:ev.pageX, y:ev. 페이지Y};
}
return {
x:ev.clientX document.body.scrollLeft - document.body.clientLeft,
y:ev.clientY document.body.scrollTop - document.body.clientTop
};
}
function getPosition(e)
{
var left = 0;
var top = 0;
while (e.offsetParent){
left = e.offsetLeft (e.currentStyle?(parseInt(e.currentStyle.borderLeftWidth)).NaN0():0);
top = e.offsetTop (e.currentStyle?(parseInt(e.currentStyle.borderTopWidth)).NaN0():0);
e = e.offsetParent;
}
left = e.offsetLeft (e.currentStyle?(parseInt(e.currentStyle.borderLeftWidth)).NaN0():0);
top = e.offsetTop (e.currentStyle?(parseInt(e.currentStyle.borderTopWidth)).NaN0():0);
return {x:왼쪽, y:상단};
}
function getMouseOffset(target, ev)
{
ev = ev || 창.이벤트;
var docPos = getPosition(대상);
var mousePos = mouseCoords(ev);
{x:mousePos.x - docPos.x, y:mousePos.y - docPos.y}를 반환합니다.
}
function closeCalendar(evt){
evt = evt || 창.이벤트;
var _target= evt.target || evt.srcElement;
if(!_target.getAttribute("Author") && _target != inputObj && _target != targetObj)
{
getObjById("Calendar").style.display = "none";
}
}
function dragStart(evt){
evt = evt || 창.이벤트;
var _target= evt.target || evt.srcElement;
if(_target.getAttribute("Author") == "alin_bar")
{
dragObj = getObjById("Calendar");
mouseOffset = getMouseOffset(dragObj, evt);
}
}
함수 드래그(evt)
{
evt = evt || 창.이벤트;
if(dragObj)
{
var mousePos = mouseCoords(evt);
dragObj.style.left = (mousePos.x - mouseOffset.x) 'px';
dragObj.style.top = (mousePos.y - mouseOffset.y) 'px';
}
}
//拖动结束
function dragEnd(evt)
{
dragObj = null;
}
document.onclick = closeCalendar;
document.onmousedown = dragStart;
document.onmousemove = 드래그;
document.onmouseup = dragEnd;
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

두 번째 모니터에 win11 듀얼 스크린 캘린더가 없으면 어떻게 해야 하나요? 두 번째 모니터에 win11 듀얼 스크린 캘린더가 없으면 어떻게 해야 하나요? Jun 12, 2024 pm 05:47 PM

Windows 11에서 일상 업무와 루틴을 구성하는 중요한 도구는 작업 표시줄에 시간과 날짜를 표시하는 것입니다. 이 기능은 일반적으로 화면 오른쪽 하단에 있으며 시간과 날짜에 즉시 액세스할 수 있습니다. 이 영역을 클릭하면 달력이 나타나 별도의 앱을 열지 않고도 다가오는 약속과 날짜를 더 쉽게 확인할 수 있습니다. 그러나 여러 모니터를 사용하는 경우 이 기능에 문제가 발생할 수 있습니다. 특히 연결된 모든 모니터의 작업 표시줄에는 시계와 날짜가 표시되지만 두 번째 모니터에서 날짜와 시간을 클릭하여 달력을 표시하는 기능은 사용할 수 없습니다. 현재 이 기능은 메인 디스플레이에서만 작동합니다. 이는 Windows 10과 달리

Outlook 일정이 동기화되지 않습니다. Outlook 일정이 동기화되지 않습니다. Mar 26, 2024 am 09:36 AM

Outlook 일정이 Google Calendar, Teams, iPhone, Android, Zoom, Office 계정 등과 동기화할 수 없는 경우 아래 단계에 따라 문제를 해결하세요. 캘린더 앱은 구글캘린더, 아이폰, 안드로이드, 마이크로소프트 오피스 365 등 다른 캘린더 서비스와 연동이 가능하며, 자동으로 동기화가 가능해 매우 유용합니다. 그러나 OutlookCalendar가 타사 캘린더와 동기화하지 못하는 경우 동기화를 위해 잘못된 캘린더를 선택하거나 캘린더가 표시되지 않거나 백그라운드 애플리케이션 간섭, 오래된 Outlook 애플리케이션 또는 캘린더 애플리케이션 등이 원인일 수 있습니다. Outlook 일정이 동기화되지 않는 문제에 대한 예비 수정

Win10에서 캘린더 이벤트에 대한 팝업 알림이 없으면 어떻게 해야 합니까? Win10에서 캘린더 이벤트 알림이 사라진 경우 어떻게 복구할 수 있습니까? Win10에서 캘린더 이벤트에 대한 팝업 알림이 없으면 어떻게 해야 합니까? Win10에서 캘린더 이벤트 알림이 사라진 경우 어떻게 복구할 수 있습니까? Jun 09, 2024 pm 02:52 PM

캘린더는 사용자가 일정을 기록하고 미리 알림을 설정하는 데 도움이 될 수 있습니다. 그러나 많은 사용자가 Windows 10에서 캘린더 이벤트 미리 알림이 팝업되지 않으면 어떻게 해야 하는지 묻고 있습니다. 사용자는 먼저 Windows 업데이트 상태를 확인하거나 Windows App Store 캐시를 지워 작업을 수행할 수 있습니다. 이 사이트에서는 Win10 캘린더 이벤트 알림이 표시되지 않는 문제에 대한 분석을 사용자에게 주의 깊게 소개합니다. 캘린더 이벤트를 추가하려면 시스템 메뉴에서 "캘린더" 프로그램을 클릭하세요. 달력의 날짜를 마우스 왼쪽 버튼으로 클릭하세요. 편집창에 이벤트 이름과 알림 시간을 입력하고 '저장' 버튼을 클릭하면 이벤트가 추가됩니다. win10 캘린더 이벤트 알림이 팝업되지 않는 문제 해결

생리기간 없음 구매처: 새로운 달력 및 생일 시리즈 주변기기! 생리기간 없음 구매처: 새로운 달력 및 생일 시리즈 주변기기! Feb 29, 2024 pm 12:00 PM

잃어버린 구매처는 2월 28일 오전 11시에 업데이트됩니다. 타오바오에서 구매처를 검색하여 구매할 매장 카테고리를 선택하세요. 이번에는 MBCC 생일파티 시리즈와 2024 탁상달력 주변기기를 소개합니다. 이번에는 제품 상세정보를 함께 살펴보시죠. 생리기간 없음 구매처: 새로운 달력 및 생일 시리즈 주변기기! 분실물 조달 사무소에 새로운 것이 있습니다! —예매 시간: 2024년 2월 28일 11:00 - 2024년 3월 13일 23:59. 구매 주소: 타오바오에서 [무기한 분실 구매처]를 검색한 후 [스토어] 카테고리를 선택하여 주변 기기를 구매하세요. 소개: 이번에 새롭게 출시되는 주변기기는 MBCC 생일파티 시리즈와 2024 탁상달력 주변기기 입니다. 자세한 내용은 긴 이미지를 클릭해주세요. 구매처에서는 새로운 주변 장치를 소개합니다. MBCC 학생

win11의 시간이 항상 부정확한 문제를 해결하는 방법은 무엇입니까? Win11 시간 조정 튜토리얼은 부정확한 시간 문제를 신속하게 해결합니다. win11의 시간이 항상 부정확한 문제를 해결하는 방법은 무엇입니까? Win11 시간 조정 튜토리얼은 부정확한 시간 문제를 신속하게 해결합니다. Apr 19, 2024 am 09:31 AM

Windows 11 컴퓨터에 잘못된 시간이 표시되면 많은 문제가 발생할 수 있으며 심지어 인터넷에 연결하지 못할 수도 있습니다. 실제로 일부 응용 프로그램은 시스템에 잘못된 날짜와 시간이 표시되면 열거나 실행을 거부합니다. 그렇다면 이 문제는 어떻게 해결해야 할까요? 아래를 살펴보겠습니다! 방법 1: 1. 먼저 아래 작업 표시줄의 빈 공간을 마우스 오른쪽 버튼으로 클릭하고 작업 표시줄 설정을 선택합니다. 2. 작업 표시줄 설정 오른쪽에서 taskbarcorneroverflow3을 찾은 다음 그 위에 있는 시계 또는 시계를 찾아 선택하여 켭니다. 방법 2: 1. 키보드 단축키 win+r을 눌러 실행을 호출하고 regedit를 입력한 후 Enter를 눌러 확인합니다. 2. 레지스트리 편집기를 열고 HKEY를 찾으세요.

jQuery에서 PUT 요청 방법을 사용하는 방법은 무엇입니까? jQuery에서 PUT 요청 방법을 사용하는 방법은 무엇입니까? Feb 28, 2024 pm 03:12 PM

jQuery에서 PUT 요청 방법을 사용하는 방법은 무엇입니까? jQuery에서 PUT 요청을 보내는 방법은 다른 유형의 요청을 보내는 것과 유사하지만 몇 가지 세부 사항과 매개 변수 설정에 주의해야 합니다. PUT 요청은 일반적으로 데이터베이스의 데이터 업데이트 또는 서버의 파일 업데이트와 같은 리소스를 업데이트하는 데 사용됩니다. 다음은 jQuery에서 PUT 요청 메소드를 사용하는 구체적인 코드 예제입니다. 먼저 jQuery 라이브러리 파일을 포함했는지 확인한 다음 $.ajax({u를 통해 PUT 요청을 보낼 수 있습니다.

jQuery를 사용하여 요소의 높이 속성을 제거하는 방법은 무엇입니까? jQuery를 사용하여 요소의 높이 속성을 제거하는 방법은 무엇입니까? Feb 28, 2024 am 08:39 AM

jQuery를 사용하여 요소의 높이 속성을 제거하는 방법은 무엇입니까? 프런트엔드 개발에서는 요소의 높이 속성을 조작해야 하는 경우가 종종 있습니다. 때로는 요소의 높이를 동적으로 변경해야 할 수도 있고 요소의 높이 속성을 제거해야 하는 경우도 있습니다. 이 기사에서는 jQuery를 사용하여 요소의 높이 속성을 제거하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. jQuery를 사용하여 높이 속성을 연산하기 전에 먼저 CSS의 높이 속성을 이해해야 합니다. height 속성은 요소의 높이를 설정하는 데 사용됩니다.

jQuery 팁: 페이지에 있는 모든 태그의 텍스트를 빠르게 수정하세요. jQuery 팁: 페이지에 있는 모든 태그의 텍스트를 빠르게 수정하세요. Feb 28, 2024 pm 09:06 PM

제목: jQuery 팁: 페이지에 있는 모든 태그의 텍스트를 빠르게 수정하세요. 웹 개발에서는 페이지의 요소를 수정하고 조작해야 하는 경우가 많습니다. jQuery를 사용할 때 페이지에 있는 모든 태그의 텍스트 내용을 한 번에 수정해야 하는 경우가 있는데, 이는 시간과 에너지를 절약할 수 있습니다. 다음은 jQuery를 사용하여 페이지의 모든 태그 텍스트를 빠르게 수정하는 방법을 소개하고 구체적인 코드 예제를 제공합니다. 먼저 jQuery 라이브러리 파일을 도입하고 다음 코드가 페이지에 도입되었는지 확인해야 합니다. &lt

See all articles
if(this.date.getMonth() 1 != i)
{
str = 'onmouseover="this.className='menuOver'" onmouseout="this.className=''" ';
}
else
{
str = 'class="menuOver"';
}
str = 'onclick="' this.Obj '.bindDate('' _date.toFormatString("-") '')">' 나는 '월