请不要发表可能给我们带来伤害的言论,谢谢配合。
发不出来,楼主要的话留下信箱,我发你信箱里

解决方案 »

  1.   

    还有个简单点的,就是没阴历
    <!-- Blog日历表开始 --> 
    <script language="javascript"> 
    var diarydays="";//"<2004-07-26><2004-07-25><2004-07-22><2004-07-21><2004-07-20><2004-07-19><2004-07-18><2004-07-16><2004-07-15><2004-07-14><2004-07-13><2004-07-12><2004-07-11><2004-07-10><2004-07-09><2004-07-08><2004-07-06><2004-07-05><2004-07-04><2004-07-03><2004-07-02><2004-07-01><2004-06-30><2004-06-27><2004-06-26>"; 
    </script> 
    <style> 
    .calendarBigBorder { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; text-decoration: none; width: 170; background-color: #FFFFFF; font-size: 9pt;border:1px dotted #999; } 
    .calendarTd { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #000000; background-color: #eeeeee; height: 18px; width: 11%; text-align: center;} 
    .calendarMInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; text-decoration: none; background-color: #FFFFFF; height: 15px; border: 1px solid #666666; width: 19px; color: #0099FF;} 
    .calendarYInput { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #0099FF; text-decoration: none; background-color: #FFFFFF; height: 15px; width: 34px; border: 1px solid #666666;} 
    .calendarMonthTitle { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; height: 24px; text-align: center; color: #333333; text-decoration: none; background-color: #eeeeee; border-top-width: 1px; border-right-width: 1px; border-bottom-width: 1px; border-left-width: 1px; border-bottom-style: none; border-top-color: #999999; border-right-color: #999999; border-bottom-color: #999999; border-left-color: #999999;} 
    .calendarNow { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: bold; color: #000000; background-color: #C0C9D3; height: 18px; text-align: center;} 
    .calendarDaySat { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} 
    .calendarDaySun { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; color: #333333; text-decoration: none; background-color: #eeeeee; text-align: center; height: 18px; width: 12%;} 
    .calendarLink { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; font-weight: normal; color: #333333; text-decoration: none; background-color: #E7E7F6; text-align: center; height: 18px;} 
    .categoryTxt { font-family: "Arial", "Helvetica", "sans-serif", "宋体"; font-size: 9pt; line-height: 23px; color: #333333; text-decoration: none;} 
    .categoryTable { border-right-width: 1px; border-bottom-width: 1px; border-right-style: solid; border-bottom-style: solid; border-left-style: none; border-right-color: #000000; border-bottom-color: #000000; border-top-width: 1px; border-top-style: solid; border-top-color: #71b99c;} 
    </style> 
    <SCRIPT LANGUAGE="JavaScript"> 
    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 classTemp; 
    var calendarHover="calendarHover"; 
    var today=new getToday(); 
    var year=today.year; 
    var month=today.month; 
    var newCal; 
    //得到某月天数 
    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 Calendar() 
    { newCal = new Date(year,month,1); //当前月的第一天 
    today = new getToday(); 
    var day = -1; //用来判断日历中是否为当天 
    var startDay = newCal.getDay(); //当月开始时间 
    var endDay=getDays(newCal.getMonth(), newCal.getFullYear());//当月结束时间 
    var daily = 0; //用来生成日历中的天数值 
    if ((today.year == newCal.getFullYear()) &&(today.month == newCal.getMonth())) 
    day = today.day; 
    var caltable = document.all.caltable.tBodies.calendar; //得到日历表格的集合 
    var intDaysInMonth =getDays(newCal.getMonth(), newCal.getFullYear()); //得到当月天数 
    //生成日历 
    for (var intWeek = 0; intWeek < caltable.rows.length;intWeek++) 
    for (var intDay = 0;intDay < caltable.rows[intWeek].cells.length;intDay++) 

    var cell = caltable.rows[intWeek].cells[intDay]; //得到单元袼 
    //生成字符串用于判断当天是否有日志 
    var montemp=(newCal.getMonth()+1)<10?("0"+(newCal.getMonth()+1)):(newCal.getMonth()+1); 
    if ((intDay == startDay) && (0 == daily)){ daily = 1;} 
    var daytemp=daily<10?("0"+daily):(daily); 
    var d="<"+newCal.getFullYear()+"-"+montemp+"-"+daytemp+">"; 
    //选择样式 
    if(day==daily) 
    cell.className="calendarNow"; 
    else if(diarydays.indexOf(d)!=-1) 
    cell.className="calendarLink"; 
    else if(intDay==6) 
    cell.className = "calendarDaySat"; 
    else if (intDay==0) 
    cell.className ="calendarDaySun"; 
    else 
    cell.className="calendarTd"; 
    //生成值 
    if ((daily > 0) && (daily <= intDaysInMonth)) 
    { cell.innerText = daily; 
    daily++; 

    else 
    cell.innerText = ""; 

    document.all.year.value=year; 
    document.all.month.value=month+1; 

    function subMonth() 

    if ((month-1)<0) 

    month=11; 
    year=year-1; 

    else 

    month=month-1; 

    Calendar(); 

    function addMonth() 

    if((month+1)>11) 

    month=0; 
    year=year+1; 

    else 

    month=month+1; 

    Calendar(); 

    //得到响应事件