`
阅读更多

//-------------------------------------
//mxh--20070612
//日历控件
//使用方法ShowCalendar(InputBox,template)
//参数说明:inputBox:显示的文本框
//   template:显示格式"yyyy-mm-dd hh:ii:ss"中间的字母不变可以任意调整其他的字符,包括添加例如:yyyy年mm月dd日hh时ii分ss秒
//-------------------------------------
var months=new Array("一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月");
var daysInMonth=new Array(31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
var days=new Array("日","一", "二", "三", "四", "五", "六");
var today;

document.writeln("<div id='Calendar' style='position:absolute; z-index:1; visibility: hidden; filter:\"progid:DXImageTransform.Microsoft.Shadow(direction=135,color=#999999,strength=3)\"'></div>");


//获取某月的天数二月28瑞年29
function getDays(month,year)
{
 if(1==month)
 {
  return ((0 == year % 4) && (0 != (year % 100))) || (0 == year % 400) ? 29 : 28;
 }
 else
 {
  return daysInMonth[month];
 }
}
//此类里记录了今天的年、月、日
function getToday()
{
 this.now=new Date();
 this.year=this.now.getFullYear();
 this.month=this.now.getMonth();
 this.day=this.now.getDate();
}

//得到输入框的年、月、日
function getStringDay(str)

 var str=str.split("-");//根据‘-’分割后的string存放到str数组中
  this.now = new Date(parseFloat(str[0]),parseFloat(str[1])-1,parseFloat(str[2]));
  this.year=this.now.getFullYear();
  this.month=this.now.getMonth();
  this.day=this.now.getDate();//一个月中的某一天 getDay()返回一周中的某一天
}

//判断是否为日期
function isDate(dateStr)
{
 var datePat=/^(\d{4})(\-)(\d{1,2})(\-)(\d{1,2})$/;//正则表达式
 var matchArray=dateStr.match(datePat);
 
 if(matchArray==null) return false;
 
 var month=matchArray[3];
 var day=matchArray[5];
 var year=matchArray[1];
 
 if(month<1 || month>12) return false;
 if(day<1 ||day>31) return false;
 if((month==4 || month==6 || month==9 || month==11) && day==31) return false;
 
 if(month==2)
 {
  var isleap=(year % 4 ==0 && (year % 100 !=0 || year % 400 ==0));
  if(day>29 || (day==29 && !isleap)) return false;
 }
 return true; 
}

function HiddenCalendar()
{
 document.all.Calendar.style.visibility='hidden';
}
//获取日历上的日期设置到InputBox上
function GetDate(InputBox,dateTemplate)
{
 var sDate;
 if(event.srcElement.tagName=="TD")//event.srcElement表示调用此函数的元素
 {
  if(event.srcElement.innerText!="")
  {
   //sDate = document.all.Year.value + "-" + document.all.Month.value + "-" + event.srcElement.innerText;
   var dt=new Date(parseFloat(document.all.Year.value),parseFloat(document.all.Month.value) - 1,parseFloat(event.srcElement.innerText));
   sDate=SetFormat(dt,dateTemplate);
   eval("document.all."+InputBox).value=sDate;
   HiddenCalendar();//隐藏日历
  }
 }
}
//格式化日期yyyy-mm-dd hh:ii:ss
function SetFormat(date_obj,date_template)
{
 if(!date_template)
 {
  date_template="yyyy-mm-dd hh:ii:ss";
 }
 var year=date_obj.getFullYear().toString();
 var short_year;
 short_year=year.substring(2,4);
 
 var month=(date_obj.getMonth() + 1).toString();
 var full_month;
 month.length==1?full_month="0"+month:full_month=month;
 
 var day=date_obj.getDate().toString();
 var full_day;
 day.length==1?full_day="0"+day:full_day=day;
 
 var hour=date_obj.getHours().toString();
 var full_hour;
 hour.length==1?full_hour="0"+hour:full_hour=hour;
 
 var minutes=date_obj.getMinutes().toString();
 var full_minutes;
 minutes.length==1?full_minutes="0"+minutes:full_minutes=minutes;
 
 var seconds=date_obj.getSeconds().toString();
 var full_seconds;
 seconds.length==1?full_seconds="0"+seconds:full_seconds=seconds;
 
 return date_template.replace("yyyy",year).replace("mm",full_month).replace("dd",full_day).replace("hh",full_hour).replace("ii",full_minutes).replace("ss",full_seconds);
}

//生成日历上的日期,填写到日历上
function newCalendar()
{
 var parseYear = parseInt(document.all.Year.options[document.all.Year.selectedIndex].value);
    var newCal = new Date(parseYear, document.all.Month.selectedIndex, 1);
    var day = -1;
    var startDay = newCal.getDay();
    var daily = 0;
   
    if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth()))
        day = today.day;
       
    var tableCal = document.all.calendar;
    var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear());
    
    for (var intWeek = 1; intWeek < tableCal.rows.length;intWeek++)
        for (var intDay = 0;intDay < tableCal.rows[intWeek].cells.length;intDay++)
        {
            var cell = tableCal.rows[intWeek].cells[intDay];
            if ((intDay == startDay) && (0 == daily))
                daily = 1;
               
            if(day==daily) //今天,调用今天的Class
            {
                cell.style.background='#6699CC';
                cell.style.color='#FFFFFF';
                //cell.style.fontWeight='bold';
            }
            else if(intDay==6) //周六
                cell.style.color='green';
            else if (intDay==0) //周日
                cell.style.color='red';
           
            if ((daily > 0) && (daily <= intDaysInMonth))
            {
                cell.innerText = daily;
                daily++;
            }
            else
                cell.innerText = "";
        }
}

//动态显示日历
function ShowCalendar(InputBox,template)
{
 var thisyear;//年份
 var x,y,intLoop,intWeeks,intDays;
 var DivContent;
 var year,month,day;
 thisyear=new getToday();
 thisyear=thisyear.year;
 
 var o=eval("document.all."+InputBox);//获取对象和getElementById()效果一样
 
 today=o.value;
 if(isDate(today))
 {
  today=new getStringDay(today);
 }
 else
 {
  today=new getToday();//获取今天的日期
 }
 
 //显示位置
 x=o.offsetLeft;
 y=o.offsetTop;
 
 while(o=o.offsetParent)
 {
  x+=o.offsetLeft;
  y+=o.offsetTop;
 }
 
 //设置div属性
 document.all.Calendar.style.left=x+2;
 document.all.Calendar.style.top=y+20;
 document.all.Calendar.style.visibility="visible";
 
 //输出日历表格
  DivContent="<table border='0' cellspacing='0' style='border:1px solid #0066FF; background-color:#EDF2FC'>";
    DivContent+="<tr>";
    DivContent+="<td style='border-bottom:1px solid #0066FF; background-color:#C7D8FA'>";
   
    //年--newCalender()生成日历的日期
    DivContent+="<select name='Year' id='Year' onChange='newCalendar()' style='font-family:Verdana; font-size:12px'>";
    for (intLoop = thisyear - 105; intLoop < (thisyear + 106); intLoop++)
        DivContent+="<option value= " + intLoop + " " + (today.year == intLoop ? "Selected" : "") + ">" + intLoop + "</option>";
    DivContent+="</select>";
   
    //月--newCalender()生成日历的日期
    DivContent+="<select name='Month' id='Month' onChange='newCalendar()' style='font-family:Verdana; font-size:12px'>";
    for (intLoop = 0; intLoop < months.length; intLoop++)
        DivContent+="<option value= " + (intLoop + 1) + " " + (today.month == intLoop ? "Selected" : "") + ">" + months[intLoop] + "</option>";
    DivContent+="</select>";
   
    DivContent+="</td>";
   
    DivContent+="<td style='border-bottom:1px solid #0066FF; background-color:#C7D8FA; font-weight:bold; font-family:Wingdings 2,Wingdings,Webdings; font-size:16px; padding-top:2px; color:#4477FF; cursor:hand' align='center' title='关闭' onClick='javascript:HiddenCalendar()'>S</td>";
    DivContent+="</tr>";
    
    DivContent+="<tr><td align='center' colspan='2'>";
    DivContent+="<table id='calendar' border='0' width='100%'>";
   
    //星期
    DivContent+="<tr>";
    for (intLoop = 0; intLoop < days.length; intLoop++)
        DivContent+="<td align='center' style='font-size:12px'>" + days[intLoop] + "</td>";
    DivContent+="</tr>";
   
    //天--GetDate(InputBox)
    for (intWeeks = 0; intWeeks < 6; intWeeks++)
    {
        DivContent+="<tr>";
        for (intDays = 0; intDays < days.length; intDays++)
            DivContent+="<td onClick=\"GetDate('"+InputBox+"','"+template+"')\" style='cursor:hand; border-right:1px solid #BBBBBB; border-bottom:1px solid #BBBBBB; color:#215DC6; font-family:Verdana; font-size:12px' align='center'></td>";
        DivContent+="</tr>";
    }
    DivContent+="</table></td></tr></table>";
 
 document.all.Calendar.innerHTML=DivContent; 
 newCalendar();
}

 

//显示静态日历
//参数说明:template:日期格式
//   target:日历显示的位置   
function ShowCalendar(template,target)
{
 var thisyear;//年份
 var x,y,intLoop,intWeeks,intDays;
 var DivContent;
 var year,month,day;
 thisyear=new getToday();
 thisyear=thisyear.year;
 
 today=new getToday();
 
 var targ=eval("document.all."+target);
 x=targ.offsetLeft;
 y=targ.offsetTop;
 
 while(targ=targ.offsetParent)
 {
  x+=targ.offsetLeft;
  y+=targ.offsetTop;
 }
 
 //设置div属性
 document.all.Calendar.style.left=x;
 document.all.Calendar.style.top=y;
 document.all.Calendar.style.visibility="visible";
 
 //输出日历表格
  DivContent="<table border='0' cellspacing='0' style='border:1px solid #0066FF; background-color:#EDF2FC'>";
    DivContent+="<tr>";
    DivContent+="<td style='border-bottom:1px solid #0066FF; background-color:#C7D8FA'>";
   
    //年--newCalender()生成日历的日期
    DivContent+="<select name='Year' id='Year' onChange='newCalendar()' style='font-family:Verdana; font-size:12px'>";
    for (intLoop = thisyear - 105; intLoop < (thisyear + 106); intLoop++)
        DivContent+="<option value= " + intLoop + " " + (today.year == intLoop ? "Selected" : "") + ">" + intLoop + "</option>";
    DivContent+="</select>";
   
    //月--newCalender()生成日历的日期
    DivContent+="<select name='Month' id='Month' onChange='newCalendar()' style='font-family:Verdana; font-size:12px'>";
    for (intLoop = 0; intLoop < months.length; intLoop++)
        DivContent+="<option value= " + (intLoop + 1) + " " + (today.month == intLoop ? "Selected" : "") + ">" + months[intLoop] + "</option>";
    DivContent+="</select>";
   
    DivContent+="</td>";
   
    //DivContent+="<td style='border-bottom:1px solid #0066FF; background-color:#C7D8FA; font-weight:bold; font-family:Wingdings 2,Wingdings,Webdings; font-size:16px; padding-top:2px; color:#4477FF; cursor:hand' align='center' title='关闭' onClick='javascript:HiddenCalendar()'>S</td>";
    DivContent+="</tr>";
    
    DivContent+="<tr><td align='center' colspan='2'>";
    DivContent+="<table id='calendar' border='0' width='100%'>";
   
    //星期
    DivContent+="<tr>";
    for (intLoop = 0; intLoop < days.length; intLoop++)
        DivContent+="<td align='center' style='font-size:12px'>" + days[intLoop] + "</td>";
    DivContent+="</tr>";
   
    //天--GetDate(InputBox)
    for (intWeeks = 0; intWeeks < 6; intWeeks++)
    {
        DivContent+="<tr>";
        for (intDays = 0; intDays < days.length; intDays++)
            DivContent+="<td onClick=\"GetDate('"+template+"')\" style='cursor:hand; border-right:1px solid #BBBBBB; border-bottom:1px solid #BBBBBB; color:#215DC6; font-family:Verdana; font-size:12px' align='center'></td>";
        DivContent+="</tr>";
    }
    DivContent+="</table></td></tr></table>";
 
 document.all.Calendar.innerHTML=DivContent; 
 newCalendar();
}

//返回静态日历的日期字符串
function GetDate(dateTemplate)
{
 var sDate;
 if(event.srcElement.tagName=="TD")//event.srcElement表示调用此函数的元素
 {
  if(event.srcElement.innerText!="")
  {
   //sDate = document.all.Year.value + "-" + document.all.Month.value + "-" + event.srcElement.innerText;
   var dt=new Date(parseFloat(document.all.Year.value),parseFloat(document.all.Month.value) -1,parseFloat(event.srcElement.innerText));
   sDate=SetFormat(dt,dateTemplate);
   return sDate;
  }
 }
}

分享到:
评论

相关推荐

    JavaScript日历控件 六种日历

    JavaScript日历控件是网页开发中常用的一种交互元素,它能帮助用户方便地选择日期,常见于表单输入、事件安排或时间相关的功能。在给定的资源中,包含了六种不同样式的JavaScript日历,这些日历可能具有不同的设计...

    javascript 日历

    JavaScript日历是一种常见的网页交互元素,它用于展示日期并允许用户选择特定的日期。在网页开发中,JavaScript日历通常与jQuery库结合使用,因为jQuery提供了丰富的DOM操作和动画效果,使得日历插件的实现更加简洁...

    完美javascript日历大集合

    在这个“完美javascript日历大集合”中,我们可能会遇到一系列使用JavaScript实现的创新日历组件,这些组件可能包括各种设计风格、功能特性和适应性,旨在提升用户体验并增强网站的互动性。 日历组件是网页中常见的...

    JavaScript日历

    JavaScript日历是一款完全使用原生JavaScript编写的日历组件,它体现了JavaScript在前端开发中的强大功能,无需依赖任何外部库如Vue或jQuery。这个组件允许用户进行上下翻页以查看不同月份的日历,并且支持点击特定...

    6种JavaScript日历控件

    JavaScript日历控件是网页开发中常用的一种交互元素,它为用户提供了一个直观的方式来选择日期,常见于表单、事件管理或在线预订系统等场景。在本文中,我们将深入探讨六种不同的JavaScript日历控件,了解它们的特点...

    js 日历 js日历 例子 javascript日历

    JavaScript日历是一个常见的网页交互元素,它为用户提供了一个方便的方式来选择日期,常见于表单填写、事件安排等场景。在Web开发中,JavaScript日历组件的实现主要依赖于JavaScript语言和CSS来完成页面布局和样式...

    javascript日历组件

    JavaScript日历组件是一种在网页上实现交互式日期选择功能的工具,它允许用户方便地查看和选择日期,常用于表单填写、事件预订或者时间安排等场景。在本案例中,我们有两个关键文件:`jscalendarx.htm` 和 `...

    javascript日历插件

    JavaScript日历插件是一种网页应用程序中的交互式组件,它允许用户在网页上选择或输入日期和时间。这种插件通常由JavaScript代码实现,利用浏览器的DOM(文档对象模型)进行操作,提供用户友好的界面来处理日期选择...

    个人收集的各种漂亮javascript日历

    JavaScript日历是网页开发中常用的一种交互元素,用于展示日期并提供用户选择日期的功能。在网页设计中,美观且易用的日历控件能够提升用户体验,使得数据输入更加直观便捷。这里我们关注的是一个个人收藏的...

    日文版javascript日历

    【标题】"日文版javascript日历"是一个专门针对日语环境设计的JavaScript日历控件,它提供了方便的日历显示和交互功能,尤其适用于需要日文日期展示的Web应用程序。这个控件不仅包含了完整的日历功能,还带有详细的...

    yearlist.zip_javascript 日历

    “有点FLASH般的闪亮效果”则暗示了这个JavaScript日历可能采用了类似早期FLASH技术中的动态光照、渐变或者透明效果,来达到吸引用户注意力并提升网页互动性目的。这样的日历组件在网页设计中可以用于日期选择、事件...

    弹出式JavaScript 日历控件

    JavaScript日历控件是网页开发中的一个重要组成部分,它为用户提供了一种直观且用户友好的方式来选择日期。Tigra Calendar是一款广泛使用的跨浏览器JavaScript日历控件,它以其弹出式的显示方式而受到青睐。在本文中...

Global site tag (gtag.js) - Google Analytics