Javascript擷取當前日期的農曆日期代碼

來源:互聯網
上載者:User

 JavaScript代碼

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 /*設定農曆日期*/    var CalendarData=new Array(100);    var madd=new Array(12);    var numString="一二三四五六七八九十";    var monString="正二三四五六七八九十冬臘";    var cYear,cMonth,cDay,TheDate;    // 農曆每月只能是29或30天,一年用12(或13)個二進位位表示,從高到低,對應位為1表示30天,否則29天    CalendarData = new Array(0xA4B,0x5164B,0x6A5,0x6D4,0x415B5,0x2B6,0×957,0x2092F,0×497,0x60C96,0xD4A,0xEA5,0x50DA9,0x5AD,    0x2B6,0x3126E, 0x92E,0x7192D,0xC95,0xD4A,0x61B4A,0xB55,0x56A,0x4155B, 0x25D,0x92D,0x2192B,0xA95,0×71695,0x6CA,    0xB55,0x50AB5,0x4DA,0xA5B,0x30A57,0x52B,0x8152A,0xE95,0x6AA,0x615AA,0xAB5,0x4B6,0x414AE,0xA57,0×526,0x31D26,0xD95,    0x70B55,0x56A,0x96D,0x5095D,0x4AD,0xA4D,0x41A4D,0xD25,0x81AA5,0xB54,0xB6A,0x612DA,0x95B,0x49B,0×41497,0xA4B,0xA164B,    0x6A5,0x6D4,0x615B4,0xAB6,0×957,0x5092F,0×497,0x64B, 0x30D4A,0xEA5,0x80D65,0x5AC,0xAB6,0x5126D,0x92E,0xC96,0x41A95,    0xD4A,0xDA5,0x20B55,0x56A,0x7155B,0x25D,0x92D,0x5192B,0xA95,0xB4A,0x416AA,0xAD5,0x90AB5,0x4BA,0xA5B, 0x60A57,0x52B,    0xA93,0x40E95);     madd[0]=0;    madd[1]=31;    madd[2]=59;    madd[3]=90;    madd[4]=120;    madd[5]=151;    madd[6]=181;    madd[7]=212;    madd[8]=243;    madd[9]=273;    madd[10]=304;    madd[11]=334;    function GetBit(m,n){    return (m>>n)&1;    }    function e2c(){    TheDate= (arguments.length!=3) ? new Date() : new Date(arguments[0],arguments[1],arguments[2]);    var total,m,n,k;    var isEnd=false;    var tmp=TheDate.getYear();    if(tmp<1900){    tmp+=1900;    }    total=(tmp-1921)*365+Math.floor((tmp-1921)/4)+madd[TheDate.getMonth()]+TheDate.getDate()-38;    if(TheDate.getYear()%4==0&&TheDate.getMonth()>1) {    total++;    }    for(m=0;;m++){    k=(CalendarData[m]<0xfff)?11:12;    for(n=k;n>=0;n--){    if(total<=29+GetBit(CalendarData[m],n)){    isEnd=true; break;    }    total=total-29-GetBit(CalendarData[m],n);    }    if(isEnd) break;    }    cYear=1921 + m;    cMonth=k-n+1;    cDay=total;    if(k==12){    if(cMonth==Math.floor(CalendarData[m]/0x10000)+1){    cMonth=1-cMonth;    }    if(cMonth>Math.floor(CalendarData[m]/0x10000)+1){    cMonth--;    }    }    }    function GetcDateString(){    var tmp="";    if(cMonth<1){    tmp+="(閏)";    tmp+=monString.charAt(-cMonth-1);    }else{    tmp+=monString.charAt(cMonth-1);    }    tmp+="月";    tmp+=(cDay<11)?"初":((cDay<20)?"十":((cDay<30)?"廿":"三十"));    if (cDay%10!=0||cDay==10){    tmp+=numString.charAt((cDay-1)%10);    }    return tmp;    }    function GetLunarDay(solarYear,solarMonth,solarDay){    //solarYear = solarYear<1900?(1900+solarYear):solarYear;    if(solarYear<1921 || solarYear>2020){    return "";    }else{    solarMonth = (parseInt(solarMonth)>0) ? (solarMonth-1) : 11;    e2c(solarYear,solarMonth,solarDay);    return GetcDateString();    }    }    var D=new Date();    var yy=D.getFullYear();    var mm=D.getMonth()+1;    var dd=D.getDate();    var ww=D.getDay();    var ss=parseInt(D.getTime() / 1000);    if (yy<100) yy="19"+yy;    function showCal(){    var nongli = GetLunarDay(yy,mm,dd);    return nongli;    }    /*農曆設定end*/

調用

 代碼如下:
$('#tianqi h5').text(showCal());


效果:

 

九月十一就是當天的農曆日期

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.