日历的使用

 calendar.js日历的JS原码

function GetDateWin(ctrlobj)
{
 var winPopupWindow = new Object();
 N = (document.all) ? 0 : 1;
 if(N)
 {
     showx = 220 ; // + deltaX;
     showy = 220; // + deltaY;
 }else
 {
     showx = event.screenX - event.offsetX - 4 - 210 ; // + deltaX;
     showy = event.screenY - event.offsetY + 18; // + deltaY;
    }
 newWINwidth = 210 + 4 + 18;
 if(N){
     window.top.captureEvents (Event.CLICK|Event.FOCUS);
         window.top.onclick=IgnoreEvents;
            window.top.onfocus=HandleFocus;
            winPopupWindow.args = ctrlobj;
            winPopupWindow.returnedValue = new Array();
            winPopupWindow.args = ctrlobj;
   newWINwidth = 202;
            winPopupWindow.win = window.open("CalendarDlg.htm","CalendarDialog","dependent=yes,left="+showx + ",top=" + showy + ",width="+newWINwidth + ",height=182px" )
            winPopupWindow.win.focus()
            return winPopupWindow;
 }else{
     retval = window.showModalDialog("CalendarDlg.htm", "", "dialogWidth:189px; dialogHeight:190px; dialogLeft:"+showx+"px; dialogTop:"+showy+"px; status:no; directories:yes;scrollbars:no;Resizable=no; "  );
        }
 if( retval != null ){
  ctrlobj.value = retval;
 }else{
  //alert("取消选择!");
 }
}

CalendarDlg.htm日历的页面

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
 <HEAD>
  <TITLE>日期选择</TITLE>
  <META content="MSHTML 6.00.2800.1126" name="GENERATOR">
 </HEAD>
 <BODY bgColor="#3366cc" onload="fload()">
  <SCRIPT src="s_calendar.js">
  </SCRIPT>
  <SCRIPT>
N = (document.all) ? 0 : 1;

function fload()
{
    if(N){
        var textObj = document.getElementById("txt1");
 fPopCalendar(textObj, textObj);
    }else{
 fPopCalendar(document.all.txt1, document.all.txt1);
    }
}


function fkeydown()
{
 if(event.keyCode==27 && !N){
  event.returnValue = null;
  window.returnValue = null;
  window.close();
 }
}

document.onkeydown=fkeydown;
  </SCRIPT>
  <INPUT id="txt1" style="DISPLAY: none">
 </BODY>
</HTML>
s_calendar.js日历的编写JS

var gdCtrl = new Object();
var goSelectTag = new Array();
var gcGray = "#808080";
var gcToggle = "#ffff00";
var gcBG = "#99CCFF";
var previousObject = null;

var gdCurDate = new Date();
var giYear = gdCurDate.getFullYear();
var giMonth = gdCurDate.getMonth()+1;
var giDay = gdCurDate.getDate();

var gCalMode = "";
var gCalDefDate = "";

var CAL_MODE_NOBLANK = "2";

N = (document.all) ? 0 : 1;

function fSetDate(iYear, iMonth, iDay){
  //VicPopCal.style.visibility = "hidden";
  if ((iYear == 0) && (iMonth == 0) && (iDay == 0)){
   gdCtrl.value = "";
  }else{
   iMonth = iMonth + 100 + "";
   iMonth = iMonth.substring(1);
   iDay   = iDay + 100 + "";
   iDay   = iDay.substring(1);
   gdCtrl.value = iYear+"-"+iMonth+"-"+iDay;
  }
 
  for (i in goSelectTag)
   goSelectTag[i].style.visibility = "visible";
  goSelectTag.length = 0;
 
  if(N){
      // if(typeof(opener.winPopupWindow.args) == "")
      // alert(opener.winPopupWindow.args.value);
      if(opener.winPopupWindow.args.value ){
         opener.winPopupWindow.returnedValue = gdCtrl.value;
         opener.winPopupWindow.args.value = gdCtrl.value;
      }else if(opener.winPopupWindow.args.value == null ||
               opener.winPopupWindow.args.value == "" ){
         opener.winPopupWindow.returnedValue = gdCtrl.value;
         opener.winPopupWindow.args.value = gdCtrl.value;
      }else{
         opener.winPopupWindow.returnedValue = gdCtrl.value;
      }
      if(opener.winPopupWindow.returnFunc)  opener.winPopupWindow.returnFunc();
      window.close();
  }else{
      window.returnValue=gdCtrl.value;
      window.close();
  }
}

function HiddenDiv()
{
 var i;
  VicPopCal.style.visibility = "hidden";
  for (i in goSelectTag)
   goSelectTag[i].style.visibility = "visible";
  goSelectTag.length = 0;

}
function fSetSelected(aCell){
  var iOffset = 0;
  if(N){
      tbSelYear  = document.getElementById("tbSelYear");
      tbSelMonth = document.getElementById("tbSelMonth");
      var iYear = parseInt(tbSelYear.value);
      var iMonth = parseInt(tbSelMonth.value);
      aCell.bgColor = gcBG;
      fontObj = aCell.getElementsByTagName("font");
      var iDay = parseInt(fontObj[0].childNodes[0].nodeValue);
      // alert(fontObj[0].color);
      /*** below temp patch by maxiang ***/
      if( fontObj[0].color == gcGray ){
          iOffset = (iDay < 15 )?1:-1;
      }
      /*** above temp patch by maxiang ***/

      iMonth += iOffset;
      if (iMonth<1) {
   iYear--;
   iMonth = 12;
      }else if (iMonth>12){
   iYear++;
   iMonth = 1;
      }
  }else{
      var iYear = parseInt(tbSelYear.value);
      var iMonth = parseInt(tbSelMonth.value);
      aCell.bgColor = gcBG;
      with (aCell.children["cellText"]){
     var iDay = parseInt(innerText);
     if (color==gcGray)
  iOffset = (Victor<10)?-1:1;

   /*** below temp patch by maxiang ***/
   if( color == gcGray ){
  iOffset = (iDay < 15 )?1:-1;
   }
   /*** above temp patch by maxiang ***/

   iMonth += iOffset;
   if (iMonth<1) {
  iYear--;
  iMonth = 12;
   }else if (iMonth>12){
  iYear++;
  iMonth = 1;
   }
      }
  }
 
  fSetDate(iYear, iMonth, iDay);
}

function Point(iX, iY){
 this.x = iX;
 this.y = iY;
}

function fBuildCal(iYear, iMonth) {
  var aMonth=new Array();
  for(i=1;i<7;i++)
   aMonth[i]=new Array(i);
 
  var dCalDate=new Date(iYear, iMonth-1, 1);
  var iDayOfFirst=dCalDate.getDay();
  var iDaysInMonth=new Date(iYear, iMonth, 0).getDate();
  var iOffsetLast=new Date(iYear, iMonth-1, 0).getDate()-iDayOfFirst+1;
  var iDate = 1;
  var iNext = 1;

  for (d = 0; d < 7; d++)
 aMonth[1][d] = (d<iDayOfFirst)?-(iOffsetLast+d):iDate++;
  for (w = 2; w < 7; w++)
   for (d = 0; d < 7; d++)
  aMonth[w][d] = (iDate<=iDaysInMonth)?iDate++:-(iNext++);
  return aMonth;
}

function fDrawCal(iYear, iMonth, iCellHeight, sDateTextSize) {
  var WeekDay = new Array("日","一","二","三","四","五","六");
  var styleTD = " bgcolor='#99ccfff'  valign='middle' align='center' height='"+iCellHeight+"' style='font-size:12px; ";

  with (document) {
 write("<tr>");
 for(i=0; i<7; i++)
  write("<td "+styleTD+" color:#990099' ><font style='font-size:10.5 pt'><b>" + WeekDay[i] + "</b></font></td>");
 write("</tr>");

   for (w = 1; w < 7; w++) {
  write("<tr>");
  for (d = 0; d < 7; d++) {
   write("<td id=calCell "+styleTD+"cursor:hand;' onMouseOver='this.bgColor=gcToggle' onMouseOut='this.bgColor=gcBG' onclick='fSetSelected(this)'>");
   write("<font id=cellText name='cellText'><b> </b></font>");
   write("</td>")
  }
  write("</tr>");
 }
  }
}

function fUpdateCal(iYear, iMonth) {
  if(N){
      cellText = document.getElementsByName("cellText");
      // alert(cellText);
      myMonth = fBuildCal(iYear, iMonth);
      var i = 0;
      for (w = 0; w < 6; w++){
          for (d = 0; d < 7; d++){
              var ind = (7*w) + d;
       Victor = i++;
           if (myMonth[w+1][d]<0) {
          cellText[ind].color = gcGray;
   cellText[ind].innerHTML = -myMonth[w+1][d];
       }else{
   if( d == 0 ){
       cellText[ind].color = "red";
   }else if( d == 6 ){
       cellText[ind].color = "blue";
   }else{
       cellText[ind].color = "black";
   }
          // End of above maxiang
   cellText[ind].innerHTML = myMonth[w+1][d];
       }
   }
      }
  }else{
      myMonth = fBuildCal(iYear, iMonth);
      var i = 0;
      for (w = 0; w < 6; w++)
   for (d = 0; d < 7; d++)
       with (cellText[(7*w)+d]) {
   Victor = i++;
   if (myMonth[w+1][d]<0) {
    color = gcGray;
    innerText = -myMonth[w+1][d];
   }else{
    // Modified by maxiang for we need
    // Saturday displayed in blue font color.
    //color = ((d==0)||(d==6))?"red":"black";
    if( d == 0 ){
     color = "red";
    }else if( d == 6 ){
     color = "blue";
    }else{
     color = "black";
    }
    // End of above maxiang
    innerText = myMonth[w+1][d];
   }
  }
   }
}

function fSetYearMon(iYear, iMon){
  if (N) {
     var objSelMonth;
     objSelMonth = document.getElementById("tbSelMonth");
     objSelYear  = document.getElementById("tbSelYear");
     objSelMonth.options[iMon-1].selected = true;
     for (i = 0; i < objSelYear.length; i++)
 if (objSelYear.options[i].value == iYear)
  objSelYear.options[i].selected = true;
  }else{
     tbSelMonth.options[iMon-1].selected = true;
     for (i = 0; i < tbSelYear.length; i++)
 if (tbSelYear.options[i].value == iYear)
  tbSelYear.options[i].selected = true;
  }
  fUpdateCal(iYear, iMon);
}

function fPrevMonth(){
    if(N){
        objSelMonth = document.getElementById("tbSelMonth");
        objSelYear  = document.getElementById("tbSelYear");
        var iMon  = objSelMonth.value;
        var iYear = objSelYear.value;
    }else{
        var iMon = tbSelMonth.value;
        var iYear = tbSelYear.value;
    }
 
  if (--iMon<1) {
   iMon = 12;
   iYear--;
  }
 
  fSetYearMon(iYear, iMon);
}

function fNextMonth(){
    if(N){
        objSelMonth = document.getElementById("tbSelMonth");
        objSelYear  = document.getElementById("tbSelYear");
        var iMon  = objSelMonth.value;
        var iYear = objSelYear.value;
    }else{
        var iMon = tbSelMonth.value;
        var iYear = tbSelYear.value;
    }
 
  if (++iMon>12) {
   iMon = 1;
   iYear++;
  }
 
  fSetYearMon(iYear, iMon);
}

function fToggleTags(){
  with (document.all.tags("SELECT")){
  for (i=0; i<length; i++)
   if ((item(i).Victor!="Won")&&fTagInBound(item(i))){
    item(i).style.visibility = "hidden";
    goSelectTag[goSelectTag.length] = item(i);
   }
  }
}

function fTagInBound(aTag){
  with (VicPopCal.style){
   var l = parseInt(left);
   var t = parseInt(top);
   var r = l+parseInt(width);
   var b = t+parseInt(height);
 var ptLT = fGetXY(aTag);
 return !((ptLT.x>r)||(ptLT.x+aTag.offsetWidth<l)||(ptLT.y>b)||(ptLT.y+aTag.offsetHeight<t));
  }
}

function fGetXY(aTag){
  var oTmp = aTag;
  var pt = new Point(0,0);
  do {
   pt.x += oTmp.offsetLeft;
   pt.y += oTmp.offsetTop;
   oTmp = oTmp.offsetParent;
  } while(oTmp.tagName!="BODY");
  return pt;
}

// Main: popCtrl is the widget beyond which you want this calendar to appear;
//       dateCtrl is the widget into which you want to put the selected date.
// i.e.: <input type="text" name="dc" style="text-align:center" readonly><INPUT type="button" value="V" onclick="fPopCalendar(dc,dc);return false">
function fPopCalendar(popCtrl, dateCtrl, mode, defDate){
 gCalMode = mode;
 gCalDefDate = defDate;
 
  if (popCtrl == previousObject){
    if (VicPopCal.style.visibility == "visible"){
    //HiddenDiv();
    return true;
   }
   
  }
  previousObject = popCtrl;
  gdCtrl = dateCtrl;
  fSetYearMon(giYear, giMonth);
  if(N){
        VicPopCal = document.getElementById("VicPopCal");
   VicPopCal.style.visibility = 'visible';
   return;
  } 
  var point = fGetXY(popCtrl);

 if( gCalMode == CAL_MODE_NOBLANK ){
  document.all.CAL_B_BLANK.style.visibility = "hidden"; 
 }else{
  document.all.CAL_B_BLANK.style.visibility = "visible";
 } 

  with (VicPopCal.style) {
   left = point.x;
 top  = point.y+popCtrl.offsetHeight;
 width = VicPopCal.offsetWidth;
 height = VicPopCal.offsetHeight;
 fToggleTags(point);  
 visibility = 'visible';
  }
}

var gMonths = new Array("1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月");

with (document) {
write("<Div id='VicPopCal' style='OVERFLOW:hidden;POSITION:absolute;VISIBILITY:hidden;border:0px ridge;width:100%;height:100%;top:0;left:0;z-index:100;overflow:hidden'>");
write("<table border='0' bgcolor='#3366CC'>");
write("<TR>");
write("<td valign='middle' align='center'><img src='../images/MINUS.gif' algin=align='absmiddle' border='0' class=/"outcolor/" onMouseOver=/"this.className='overcolor';/" onMouseOut=/"this.className='outcolor';/" onClick=/"this.className='clickcolor';fPrevMonth();/">");
write("&nbsp;<SELECT style='margin: -1 px' name='tbSelYear' id=tbSelYear onChange='fUpdateCal(document.getElementById(/"tbSelYear/").value, document.getElementById(/"tbSelMonth/").value)' Victor='Won'>");
for(i=1920;i<2020;i++)
 write("<OPTION value='"+i+"'>"+i+"年</OPTION>");
write("</SELECT>");
write("&nbsp;<select style='margin: -1 px' name='tbSelMonth' id='tbSelMonth' onChange='fUpdateCal(document.getElementById(/"tbSelYear/").value, document.getElementById(/"tbSelMonth/").value)' Victor='Won'>");
for (i=0; i<12; i++)
 write("<option value='"+(i+1)+"'>"+gMonths[i]+"</option>");
write("</SELECT>");
write("&nbsp;<img src='../images/PLUS.gif' algin=align='absmiddle' border='0' class=/"outcolor/" onMouseOver=/"this.className='overcolor';/" onMouseOut=/"this.className='outcolor';/" onClick=/"this.className='clickcolor';fNextMonth();/">");
write("</td>");
write("</TR><TR>");
write("<td align='center'>");
write("<DIV style='background-color:#000066'><table border='1' cellpadding='0' style='width:100%;border-collapse:collapse;'>");
fDrawCal(giYear, giMonth, 8, '12');
write("</table></DIV>");
write("</td>");
write("</TR><TR><TD align='center'>");
write("<TABLE width='100%'><TR><TD align='center'>");
write("<B ID=/"CAL_B_BLANK/" style='color:"+gcBG+"; visibility:visible; cursor:hand; font-size:12px' onclick='fSetDate(0,0,0)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=gcBG'>清空</B></td>");
write("</td><td algin='center'>");
write("<td align='right'><B style='color:"+gcBG+";cursor:hand; font-size:12px' onclick='fSetDate(giYear,giMonth,giDay)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=gcBG'>选择: "+giYear+"-"+giMonth+"-"+giDay+"</B>");
write("</td></tr></table>");
write("</TD></TR>");
write("</TABLE></Div>");
}

获取日期.html看效果的简单页面

<html>
<head>
<script language="javascript" src="calendar.js"></script>
</head>
<body>
<form method="post" id="Form1">
<input id="t_HireDate" type="TextBox" onClick="GetDateWin(t_HireDate);return false"/>
</form>
</body>
</html>

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值