JavaScript綜合顯示陰曆(農曆)、陽曆
作者:Eve Cole
更新時間:2009-06-11 16:32:55
<script type="text/javascript">var now=new Date();</script>
<腳本語言=javascript>
var月球資訊=新數組(0x04bd8,0x04ae0,0x0a570,0x054d5,0x0d260,0x0d950,0x16554,0x056a0,0x09ad0,0x055d2,
0x04ae0,0x0a5b6,0x0a4d0,0x0d250,0x1d255,0x0b540,0x0d6a0,0x0ada2,0x095b0,0x14977,
0x04970,0x0a4b0,0x0b4b5,0x06a50,0x06d40,0x1ab54,0x02b60,0x09570,0x052f2,0x04970,
0x06566,0x0d4a0,0x0ea50,0x06e95,0x05ad0,0x02b60,0x186e3,0x092e0,0x1c8d7,0x0c950,
0x0d4a0,0x1d8a6,0x0b550,0x056a0,0x1a5b4,0x025d0,0x092d0,0x0d2b2,0x0a950,0x0b557,
0x06ca0,0x0b550,0x15355,0x04da0,0x0a5d0,0x14573,0x052d0,0x0a9a8,0x0e950,0x06aa0,
0x0aea6,0x0ab50,0x04b60,0x0aae4,0x0a570,0x05260,0x0f263,0x0d950,0x05b57,0x056a0,
0x096d0,0x04dd5,0x04ad0,0x0a4d0,0x0d4d4,0x0d250,0x0d558,0x0b540,0x0b5a0,0x195a6,
0x095b0,0x049b0,0x0a974,0x0a4b0,0x0b27a,0x06a50,0x06d40,0x0af46,0x0ab60,0x09570,
0x04af5,0x04970,0x064b0,0x074a3,0x0ea50,0x06b58,0x055c0,0x0ab60,0x096d5,0x092e0,
0x0c960,0x0d954,0x0d4a0,0x0da50,0x07552,0x056a0,0x0abb7,0x025d0,0x092d0,0x0cab5,
0x0a950,0x0b4a0,0x0baa4,0x0ad50,0x055d9,0x04ba0,0x0a5b0,0x15176,0x052b0,0x0a930,
0x07954,0x06aa0,0x0ad50,0x05b52,0x04b60,0x0a6e6,0x0a4e0,0x0d260,0x0ea65,0x0d530,
0x05aa0,0x076a3,0x096d0,0x04bd7,0x04ad0,0x0a4d0,0x1d0b6,0x0d250,0x0d520,0x0dd45,
0x0b5a0,0x056d0,0x055b2,0x049b0,0x0a577,0x0a4b0,0x0aa50,0x1b255,0x06d20,0x0ada0);
//====傳回農曆y年的總天數
函數 lyeardays(y) {
變數 i,總和 = 348
for(i=0x8000; i>0x8; i>>=1) sum += (lunarinfo[y-1900] & i)? 1:0
回(總和+閏日(y))
}
//====傳回農曆y年閏月的天數
函數閏日(y) {
if(閏月(y)) 回((lunarinfo[y-1900] & 0x10000)? 30: 29)
否則返回(0)
}
//====傳回農曆 y年閏哪個月 1-12 , 沒閏傳回 0
函數閏月(y) { 回傳(lunarinfo[y-1900] & 0xf)}
//======================================== 傳回農曆y年m月的總天數
函數monthdays(y,m) { return( (lunarinfo[y-1900] & (0x10000>>m))? 30: 29 )}
//====計算出農曆,建立日期對象,傳回農曆日期對象
// 該物件屬性有 .year .month .day .isleap .yearcyl .daycyl .moncyl
函數月球(objdate){
var i,leap=0,temp=0;
var basedate = new Date(1900,0,31);
var offset = (objdate - basedate)/86400000;
this.daycyl = 偏移量 + 40;
this.moncyl = 14;
for(i=1900; i<2050 && 偏移>0; i++) {
溫度 = lyeardays(i);
偏移量-=溫度;
this.moncyl += 12;
}
如果(偏移<0){
偏移+=溫度;
我 - ;
this.moncyl -= 12;
}
今年.年=我;
this.yearcyl = i-1864;
閏月=閏月(i); //閏哪個月
this.isleap = false
for(i=1; i<13 && offset>0; i++) {
//閏月
if(leap>0 && i==(leap+1) && this.isleap==false)
{ - 我; this.isleap = true; temp = 閏日(this.year); }
別的
{ temp = 月日(this.year, i); }
//解除閏月
if(this.isleap==true && i==(leap+1)) this.isleap = false
偏移量 -= 溫度
if(this.isleap == false) this.moncyl ++
}
if(偏移量==0 && 跳躍>0 && i==跳躍+1)
if(this.isleap)
{ this.isleap = false; }
別的
{ this.isleap = true; - 我; --this.moncyl;}
if(offset<0){ offset += temp; - 我; --this.moncyl; }
這個月 = 我
這一天 = 偏移量 + 1
}
函數 cday(m,d){
var nstr1 = new Array('日','一','二','三','四','五','六','七','八','九','十') ;
var nstr2 = new Array('初','十','二十','咫',' ');
var s;
if (m>10){s = '十'+nstr1[m-10]} else {s = nstr1[m]} s += '月'
if (s=="十二月") s = "臘月";
if (s=="一月") s = "正月";
開關(d){
case 10:s += '初十';休息;
情況 20:s += '二十';休息;
情況 30:s += '三十';休息;
預設值:s += nstr2[Math.floor(d/10)]; s += nstr1[d%10];
}
退貨;
}
函數 Solarday2(){
var sdobj = new Date(now.getFullYear(),now.getMonth(),now.getDate());
var ldobj = 新月球(sdobj);
var cl = '';
//農曆bb'+(cld[d].isleap?'閏':'')+cld[d].lmonth+'月'+cld[d].lday+'日
var tt = cday(ldobj.月,ldobj.日);
document.write(now.getFullYear()+"年"+(now.getMonth()+1)+"月"+now.getDate()+"日農曆"+tt+"");
}
太陽日2();
</腳本>