首頁  >  文章  >  web前端  >  JavaScript實現每日簽到功能

JavaScript實現每日簽到功能

青灯夜游
青灯夜游轉載
2018-10-10 15:17:274836瀏覽

本文要為大家介紹JavaScript實現每日簽到功能,有一定的參考價值,有需要的朋友可以參考一下,希望對你們有幫助。

先看一下效果圖:

JavaScript實現每日簽到功能

var calUtil = {  
    getDaysInmonth : function(iMonth, iYear){ //当前年月的总天数 
      var dPrevDate = new Date(iYear, iMonth, 0);  
      return dPrevDate.getDate();  
    },  
    bulidCal : function(iYear, iMonth) { //构建当前年月对应的日历
      var aMonth = new Array();  
      aMonth[0] = new Array(7);  
      aMonth[1] = new Array(7);  
      aMonth[2] = new Array(7);  
      aMonth[3] = new Array(7);  
      aMonth[4] = new Array(7);  
      aMonth[5] = new Array(7);  
      aMonth[6] = new Array(7);  
      var dCalDate = new Date(iYear, iMonth - 1, 1);  
      var iDayOfFirst = dCalDate.getDay();  
      var iDaysInMonth = calUtil.getDaysInmonth(iMonth, iYear);  
      var iVarDate = 1;  
      var d, w;  
      aMonth[0][0] = "日";  
      aMonth[0][1] = "一";  
      aMonth[0][2] = "二";  
      aMonth[0][3] = "三";  
      aMonth[0][4] = "四";  
      aMonth[0][5] = "五";  
      aMonth[0][6] = "六";  
      for (d = iDayOfFirst; d < 7; d++) {  
        aMonth[1][d] = iVarDate;  
        iVarDate++;  
      }  
      for (w = 2; w < 7; w++) {  
        for (d = 0; d < 7; d++) {  
          if (iVarDate <= iDaysInMonth) {  
            aMonth[w][d] = iVarDate;  
            iVarDate++;  
          }  
        }  
      }  
      return aMonth;  
    },  
    ifHasSigned : function(signList,day){  
      var signed = false;  
      $.each(signList,function(index,item){  
          var date = new Date(item.signDate);  
          if(date.getDate() == day) {  
              signed = true;  
              return false;  
          }  
      });  
      return signed ;  
    },  
    drawCal : function(iYear, iMonth ,signList) {  
      var currentYearMonth = iYear+"年"+iMonth+"月";  
      var myMonth = calUtil.bulidCal(iYear, iMonth);  
      var htmls = new Array();  
      htmls.push("<p class=&#39;sign_main&#39; id=&#39;sign_layer&#39;>");  
      htmls.push("<p class=&#39;sign_succ_calendar_title&#39;>");  
      htmls.push("<p class=&#39;calendar_month_span&#39;>"+currentYearMonth+"</p>");  
      htmls.push("</p>");  
      htmls.push("<p class=&#39;sign&#39; id=&#39;sign_cal&#39;>");  
      htmls.push("<table class=&#39;table&#39;>");  
      htmls.push("<tr>");  
      htmls.push("<th>" + myMonth[0][0] + "</th>");  
      htmls.push("<th>" + myMonth[0][1] + "</th>");  
      htmls.push("<th>" + myMonth[0][2] + "</th>");  
      htmls.push("<th>" + myMonth[0][3] + "</th>");  
      htmls.push("<th>" + myMonth[0][4] + "</th>");  
      htmls.push("<th>" + myMonth[0][5] + "</th>");  
      htmls.push("<th>" + myMonth[0][6] + "</th>");  
      htmls.push("</tr>");  
      var d, w;  
      for (w = 1; w < 7; w++) {  
        htmls.push("<tr>");  
        for (d = 0; d < 7; d++) {  
          var ifHasSigned = calUtil.ifHasSigned(signList,myMonth[w][d]);  
          if(ifHasSigned){  
            htmls.push("<td class=&#39;on&#39;>" + (!isNaN(myMonth[w][d]) ? myMonth[w][d] : " ") + "</td>");  
          } else {  
            htmls.push("<td>" + (!isNaN(myMonth[w][d]) ? myMonth[w][d] : " ") + "</td>");  
          }  
        }  
        htmls.push("</tr>");  
      }  
      htmls.push("</table>");  
      htmls.push("</p>");  
      htmls.push("</p>");  
      return htmls.join(&#39;&#39;);  
    }  
};

頁面效果程式碼:

<style type="text/css">  
@media screen and (min-width:1024px) {  
    .rich_media {  
        width: 500px;  
        margin-left: auto;  
        margin-right: auto;  
        padding: 20px;  
    }  
}  
</style>  
</head>  
<body style="background-color: #fff;">  
    <p class="rich_media">  
            <p id="page-content">  
                <p style="text-align: center;background-color: #2FAA00;height: 50px;margin-bottom: 20px;">  
                    <span style="cursor: pointer;font-weight: 600;font-size: 20px;color: #fff;height: 50px;line-height: 50px;">每日签到</span>  
                    <input type="hidden" id="userId" value="${user.id }" />  
                </p>  
                <p class="container-fluid">  
                    <p class="row-fluid" id="calendar">  

                    </p>  
                    <p id="btnp" style="display: none;">  
                        <p class="row-fluid text-center">  
                            <span id="sing_for_number" class="btn btn-default">签到</span>  
                        </p>  
                    </p>  
                </p>  
            </p>  
    </p>  </body>

js呼叫方法

var str = calUtil.drawCal(current.getFullYear(),current.getMonth() + 1,signList);  
$("#calendar").html(str);

說明:signList是後台查詢的已簽到的時間集合,傳入到js方法中會去判斷哪一天簽到了,然後改變簽到天的顯示效果,如上圖!
此簽到頁面同樣適應手機瀏覽器喲!

提要:
本文以寫當前時間環境下當月的日曆表為例,用最簡單的方法實作JavaScript日曆,旨在展示JS世界中實用為本、簡單為上的解決問題的思路。

Web頁中的行事曆一般離不開表格,通常都會使用表格來裝載指定月的日期等資訊。所以,要寫JS日曆,首先必須解決的問題是表格的行與列問題。列是固定的,七列,因為一週有七天。行需要動態計算,因為,每一個月的第一天是星期幾是一個變數,因而第一天在表格中的第幾個單元也就跟著變化,同時,每個月的總天數不一致也影響著各個月對表格行數的需要量。

一.表格的行數問題

1.首先取得處理月的總天數

JS不提供此參數,我們需要計算。考慮到閏年問題會影響二月的天數,我們先寫一個判斷閏年的自編函數:

function is_leap(year) {
   return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
}

接著定義一個包含十二個月在內的月份總天數的陣列:

m_days=new Array(31,28+is_leap(ynow),31,30,31,31,30,31,30,31,30,31);

m_days這個陣列裡,二月的天數已經加入閏年的資訊:28 is_leap(ynow)。陣列元素從0開始,剛好對應JS提供的Date函數所提供的getMonth回傳值,即0表示一月,1表示二月,2表示三月,依此類推。

這樣,各月總數可以這樣取得:m_days[x]。其中,x為0至11的自然數。

2.計算處理月第一天是星期幾

可以使用Date函數的getDay取得,傳回的值從0到6,0表示星期一,1表示星期二,2表示星期三,其餘依此類推。程式碼如下(假設要處理的時間為2008年3月):

    n1str=new Date(2008,3,1);
    firstday=n1str.getDay();

有了月總天數和該月第一天是星期幾這兩個已知條件,就可以解決表格所需行數問題:(當月天數第一天是星期幾的數值)除以七。表格函數需要整數,因此,我們使用Math.ceil來處理:

tr_str=Math.ceil((m_days[mnow] + firstday)/7);

表格中的tr標籤實際上代表表格的行,因此變數tr_str是我們往下寫表格的重要依據。

二.列印日曆表格

可以使用兩個for語句巢狀起來實作:外層for語句寫行,內層for語句寫單元格。

for(i=0;i<tr_str>");   for(k=0;k");
} //外层for语句结束</tr_str>

單元格的自然序號是否代表有效日期非常關鍵,為此必須加入篩選機制:僅列印有效的日期。有效的日期大於0小於小於等於處理月的總天數。

三. 以下是完整的JS日曆程式碼:

function is_leap(year) { 
   return (year%100==0?res=(year%400==0?1:0):res=(year%4==0?1:0));
} //是否为闰年var nstr=new Date(); //当前Date资讯var ynow=nstr.getFullYear(); //年份var mnow=nstr.getMonth(); //月份var dnow=nstr.getDate(); //今日日期var n1str=new Date(ynow,mnow,1); //当月第一天Date资讯var firstday=n1str.getDay(); //当月第一天星期几var m_days=new Array(31,28+is_leap(ynow),31,30,31,30,31,31,30,31,30,31); //各月份的总天数var tr_str=Math.ceil((m_days[mnow] + firstday)/7); //表格所需要行数//打印表格第一行(有星期标志)document.write ("
");for(i=0;i");   for(k=0;km_days[mnow]) ? date_str=" " : date_str=idx-firstday+1; //过滤无效日期(小于等于零的、大于月总天数的)       //打印日期:今天底色为红       date_str==dnow ? document.write ("") : document.write ("");    }    document.write(""); //表格的行结束} document.write("
" + date_str + "" + date_str + "
"); //表格结束

總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多相關教學請造訪JavaScript影片教學

相關推薦:

php公益培訓影片教學

#JavaScript圖文教學

JavaScript線上手冊

以上是JavaScript實現每日簽到功能的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:csdn.net。如有侵權,請聯絡admin@php.cn刪除