萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> Javascript獲取當前日期的農歷日期代碼

Javascript獲取當前日期的農歷日期代碼

 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="";   
copyright © 萬盛學電腦網 all rights reserved