<HTML>
<HEAD>
<TITLE>Calendar</TITLE>
<STYLE TYPE="text/css">
.normal{FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;BACKGROUND: #ffffff}
.today {FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;font-weight:bold;color: #6699cc}
.satday{FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;color:green}
.sunday{FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;color:red}
.days {FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;font-weight:bold}
.special {FONT-FAMILY: "宋体"; FONT-SIZE: 9pt;font-weight:bold;color:red}
</STYLE>
<SCRIPT LANGUAGE="JavaScript">
var months = new Array("Jan", "Feb", "Mar","Apr", "May", "June", "July", "Aug", "Sep","Oct", "Nov", "Dec");
var daysInMonth = new Array(31, 28, 31, 30, 31, 30, 31, 31,30, 31, 30, 31);
var days = new Array("Sun", "Mon", "Tue","Wed", "Thu", "Fri", "Sat");
var yearss = 2003;
var monthss = "July";
var dayss = 26;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();
}today = new getToday();function newCalendar() {today = new getToday();var parseYear = parseInt(document.all.year[document.all.year.selectedIndex].text);
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.tBodies.dayList;
var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear());
for (var intWeek = 0; 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.className = "today";
else if(intDay==6)
//周六
cell.className = "sunday";
else if (intDay==0)
//周日
cell.className ="satday";
else
//平常
cell.className="normal";
if ((daily > 0) && (daily <= intDaysInMonth))

cell.innerText = daily;
daily++;
}
else
cell.innerText = "";
}
}function Cancel() {window.close();
}var state="";function overdate() {
var sDate;
if ("TD" == event.srcElement.tagName)
if ("" != event.srcElement.innerText)
{
if (state!="")
{
state.className="normal";
}
state=event.srcElement;
state.className="special";
}
}
function getdate() {
if (state!="")
{
window.returnValue=document.all.year.value + "-" + document.all.month.value + "-" + state.innerText + "";
window.close();
}
else
{
window.returnValue=document.all.year.value + "-" + document.all.month.value + "-" + today.day + "";
window.close();}}</SCRIPT>
</HEAD>
<BODY ONLOAD="newCalendar()" >
<TABLE ID="calendar" cellspacing="0" cellpadding="0" width="100%" border=0 >
<TR height=30>
<TD COLSPAN=7 ALIGN=CENTER><SELECT ID="year" ONCHANGE="newCalendar()">
<SCRIPT LANGUAGE="JavaScript">
for (var intLoop = today.year; intLoop < (today.year + 6);intLoop++)
document.write("<OPTION VALUE= " + intLoop + " " +(today.year == intLoop ?"Selected" : "") + ">" +intLoop);
</SCRIPT>
</SELECT><SELECT ID="month" ONCHANGE="newCalendar()">
<SCRIPT LANGUAGE="JavaScript">
for (var intLoop = 0; intLoop < months.length;intLoop++)
document.write("<OPTION VALUE= " + (intLoop + 1) + " " +(today.month == intLoop ?"Selected" : "") + ">" +months[intLoop]);
</SCRIPT>
</SELECT>
<Input  type=button value="OK" OnClick="getdate();" style="width:50;">
<Input  type=button value="Cancel" OnClick="Cancel();" style="width:50;">
</TD>
</TR>
<TR CLASS="days"  ALIGN=CENTER>
<SCRIPT LANGUAGE="JavaScript">
document.write("<TD class=satday>" + days[0] + "</TD>");
for (var intLoop = 1; intLoop < days.length-1;intLoop++) 
document.write("<TD >" + days[intLoop] + "</TD>");
document.write("<TD class=sunday>" + days[intLoop] + "</TD>");
</SCRIPT>
</TR>
<TBODY  width=100% border=1 cellspacing="0" cellpadding="0" ID="dayList" ALIGN=CENTER  >
<SCRIPT LANGUAGE="JavaScript">
for (var intWeeks = 0; intWeeks < 6; intWeeks++) {
document.write("<TR style='cursor:hand'>");
for (var intDays = 0; intDays < days.length;intDays++)
document.write("<TD ONclick='overdate()'></TD>");
document.write("</TR>");
}
</SCRIPT>
</TBODY>
</TABLE>
</BODY>
</HTML>

解决方案 »

  1.   

    不知道你的网页是否为asp页,不是的话请将扩展名改为。asp,然后采用如下方法:
    <%
    tyear=year(date)
    tmonth=month(date)
    tday=day(date)
    if tyear="2004" and tmonth="7" and tday="10" then
    %>
    使用special类的脚本
    <%else%>
    不使用special类的脚本<%end if%>
      

  2.   

    不是阿,我的网页不是ASP的,我的是JAVASCRIPT的,该如何去做啊!谢谢!
      

  3.   

    注意函数(方法)newCalendar()中的下面几行代码,你参照着里改就行了
    首先你要有特定日期的年、月、日3个变量,然后注意我在下面标出的几个地方。if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth()))
    day = today.day;/****************************************************/
    //这里是第一个要添加代码的地方,格式参照上面一行代码。逻辑是:如果特定日期的年、月符合
    //当前选中的年、月的话,就把特定日期的日纪录在一个变量里。否则变量要初始化为0。
    /****************************************************/var tableCal = document.all.calendar.tBodies.dayList;
    var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear());
    for (var intWeek = 0; 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.className = "today";/****************************************************/
    //第二个要修改的地方
    //参照上面2行的代码再增加一个else if的选择分支语句
    //逻辑是:如果daily和那个记录特殊日期的日的变量(在第一段修改代码中赋值)比较,如果相
    //等就设置样式为special
    /****************************************************/else if(intDay==6)
    //周六
    cell.className = "sunday";
    else if (intDay==0)
    //周日
    cell.className ="satday";
    else
    //平常
    cell.className="normal";
      

  4.   

    function getNowDate()
    {
       var nn=new Date();
       year1=nn.getYear();
       mon1=nn.getMonth()+1;
       date1=nn.getDate();
       var monstr1;
       var datestr1
       if(mon1<10)
        monstr1="0"+mon1;
       else
        monstr1=""+mon1;   if(date1<10)
         datestr1="0"+date1;
       else
         datestr1=""+date1;
       return year1+"/"+monstr1+"/"+datestr1;
    }
    function getlastweekDate()
    {
       var nn=new Date();
       year1=nn.getYear();
       mon1=nn.getMonth()+1;
       date1=nn.getDate();   var mm=new Date(year1,mon1-1,date1);
       var tmp1=new Date(2000,1,1);
       var tmp2=new Date(2000,1,15);
       var ne=tmp2-tmp1;
       var mm2=new Date();
       mm2.setTime(mm.getTime()-ne);
       year2=mm2.getYear();
       mon2=mm2.getMonth()+1;
       date2=mm2.getDate();
         if(mon2<10)
        monstr2="0"+mon2;
       else
        monstr2=""+mon2;   if(date2<10)
         datestr2="0"+date2;
       else
         datestr2=""+date2;
        return year2+"/"+monstr2+"/"+datestr2;
    }var gdCtrl = new Object();
    var goSelectTag = new Array();
    var gcGray   = "#808080";
    var gcToggle = "#FB8664";
    var gcBG = "#e5e6ec";
    var previousObject = null;var gdCurDate = new Date();
    var giYear = gdCurDate.getFullYear();
    var giMonth = gdCurDate.getMonth()+1;
    var giDay = gdCurDate.getDate();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);
              if(gdCtrl.tagName == "INPUT"){
                        gdCtrl.value = iYear+"/"+iMonth+"/"+iDay;
              }else{
                        gdCtrl.innerText = iYear+"/"+iMonth+"/"+iDay;
              }
      }  for (i in goSelectTag)
              goSelectTag[i].style.visibility = "visible";
      goSelectTag.length = 0;  window.returnValue=gdCtrl.value;}
    function fSetDate1(iYear, iMonth, iDay){
      VicPopCal.style.visibility = "hidden";
    }
    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;
      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;
            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='"+gcBG+"' bordercolor='"+gcBG+"' valign='middle' align='center' height='"+iCellHeight+"' style='font:bold arial "+sDateTextSize+";";            //Coded by Liming Weng(Victor Won) email:[email protected]  with (document) {
            write("<tr>");
            for(i=0; i<7; i++){
                    write("<td "+styleTD+"color:#990099' >"+ WeekDay[i] + "</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 Victor='Liming Weng'> </font>");
                            write("</td>")
                    }
                    write("</tr>");
            }
      }
    }function fUpdateCal(iYear, iMonth) {
      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{
                                    color = ((d==0)||(d==6))?"red":"black";
                                    innerText = myMonth[w+1][d];
                            }
                    }
    }function fSetYearMon(iYear, iMon){
      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(){
      var iMon = tbSelMonth.value;
      var iYear = tbSelYear.value;  if (--iMon<1) {
              iMon = 12;
              iYear--;
      }  fSetYearMon(iYear, iMon);
    }function fNextMonth(){
      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,strDate){
      if (popCtrl == previousObject){
                      if (VicPopCal.style.visibility == "visible"){
                      HiddenDiv();
                      return true;
              }  }
      previousObject = popCtrl;
      gdCtrl = dateCtrl;
      fInitialDate(strDate);
      fSetYearMon(giYear, giMonth);
      var point = fGetXY(popCtrl);
      with (VicPopCal.style) {
              left = point.x;
            top  = point.y+popCtrl.offsetHeight;
            width = VicPopCal.offsetWidth;
            width = 183; // Added by Danian Zhang/SUI
            height = VicPopCal.offsetHeight;
            fToggleTags(point);
            visibility = 'visible';
      }
    }
      

  5.   

    // Added by Danian Zhang/SUI
    function fInitialDate(strDate){
            if( strDate == null || strDate.length != 10 )
                    return false;        var sYear  = strDate.substring(0,4);
            var sMonth = strDate.substring(5,7);
            var sDay   = strDate.substring(8,10);        if( sMonth.charAt(0) == '0' ) { sMonth = sMonth.substring(1,2); }
            if( sDay.charAt(0)   == '0' ) { sDay   = sDay.substring(1,2);   }        var nYear  = parseInt(sYear );
            var nMonth = parseInt(sMonth);
            var nDay   = parseInt(sDay  );        if ( isNaN(nYear ) )        return false;
            if ( isNaN(nMonth) )        return false;
            if ( isNaN(nDay  ) )        return false;        var arrMon = new Array(12);
            arrMon[ 0] = 31;        arrMon[ 1] = nYear % 4 == 0 ? 29:28;
            arrMon[ 2] = 31;        arrMon[ 3] = 30;
            arrMon[ 4] = 31;        arrMon[ 5] = 30;
            arrMon[ 6] = 31;        arrMon[ 7] = 31;
            arrMon[ 8] = 30;        arrMon[ 9] = 31;
            arrMon[10] = 30;        arrMon[11] = 31;        if ( nYear  < 1900 || nYear > 2100 )                        return false;
            if ( nMonth < 1 || nMonth > 12 )                                return false;
            if ( nDay < 1 || nDay > arrMon[nMonth - 1] )        return false;        giYear  = nYear;
            giMonth = nMonth;
            giDay   = nDay;
            return true;
    }var gMonths = new Array("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");with (document) {
    write("<Div id='VicPopCal' style='OVERFLOW:hidden;POSITION:absolute;VISIBILITY:hidden;border:1px ridge;z-index:100;' >");
    write("<table border='0' bgcolor='#cccccc'>");
    write("<TR>");
    write("<td valign='middle' align='center'><input type='button' name='PrevMonth' value='<' style='FONT:bold' onClick='fPrevMonth()'>");
    write("&nbsp;<SELECT name='tbSelYear' onChange='fUpdateCal(tbSelYear.value, tbSelMonth.value)' Victor='Won'>");
    for(i=1950;i<2015;i++)
            write("<OPTION value='"+i+"'>"+i+" 年</OPTION>");
    write("</SELECT>");
    write("&nbsp;<select name='tbSelMonth' onChange='fUpdateCal(tbSelYear.value, tbSelMonth.value)' Victor='Won'>");
    for (i=0; i<12; i++)
            write("<option value='"+(i+1)+"'>"+gMonths[i]+"</option>");
    write("</SELECT>");
    write("&nbsp;<input type='button' name='PrevMonth' value='>' style='FONT:bold' onclick='fNextMonth()'>");
    write("</td>");
    write("</TR><TR>");
    write("<td align='center'>");
    write("<DIV style='background-color:teal'><table width='100%' border='0'>");
    fDrawCal(giYear, giMonth, 20, '12');
    write("</table></DIV>");
    write("</td>");
    write("</TR><TR><TD align='center'>");
    write("<TABLE ><TR><TD align='center'>");
    write("<B style='cursor:hand' onclick='fSetDate(giYear,giMonth,giDay)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=0'><font size=2>今天: "+giYear+"/"+giMonth+"/"+giDay+"</font></B>|");
    write("</td><td algin='center'>");
    write("<B style='cursor:hand' onclick='fSetDate1(0,0,0)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=0'><font size=2>關閉</font></B>|");
    write("</td></tr></table>");
    write("</TD></TR>");
    write("</TABLE></Div>");
    }