首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

JavaScript阴历转换类

2013-01-28 
JavaScript农历转换类今天在做项目的时候需要用到JavaScript农历转换算法,从网上搜索并整理了一下,重新写

JavaScript农历转换类

今天在做项目的时候需要用到JavaScript农历转换算法,从网上搜索并整理了一下,重新写出一个JavaScript农历转换类,不敢独占,特此与大家分享。

  1. /*!
  2.  * LunarDate v1.0.0
  3.  * http://www.clanfei.com/
  4.  *
  5.  * Author: Lanfei
  6.  * Date: 2013-1-24
  7.  */
  8. var LunarDate = {
  9.         madd: new Array(0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334),
  10.         HsString: '甲乙丙丁戊己庚辛壬癸',
  11.         EbString: '子丑寅卯辰巳午未申酉戌亥',
  12.         NumString: "一二三四五六七八九十",
  13.         MonString: "正二三四五六七八九十冬腊",
  14.         CalendarData: new Array(0xA4B, 0x5164B, 0x6A5, 0x6D4, 0x415B5, 0x2B6, 0x957, 0x2092F, 0x497, 0x60C96, 0xD4A, 0xEA5, 0x50DA9, 0x5AD, 0x2B6, 0x3126E, 0x92E, 0x7192D, 0xC95, 0xD4A, 0x61B4A, 0xB55, 0x56A, 0x4155B, 0x25D, 0x92D, 0x2192B, 0xA95, 0x71695, 0x6CA, 0xB55, 0x50AB5, 0x4DA, 0xA5B, 0x30A57, 0x52B, 0x8152A, 0xE95, 0x6AA, 0x615AA, 0xAB5, 0x4B6, 0x414AE, 0xA57, 0x526, 0x31D26, 0xD95, 0x70B55, 0x56A, 0x96D, 0x5095D, 0x4AD, 0xA4D, 0x41A4D, 0xD25, 0x81AA5, 0xB54, 0xB6A, 0x612DA, 0x95B, 0x49B, 0x41497, 0xA4B, 0xA164B, 0x6A5, 0x6D4, 0x615B4, 0xAB6, 0x957, 0x5092F, 0x497, 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),
  15.         Year: null,
  16.         Month: null,
  17.         Day: null,
  18.         TheDate: null,
  19.         GetBit: function(m, n){
  20.                 return (m >> n) & 1;
  21.         },
  22.         e2c: function(){
  23.                 this.TheDate = (arguments.length != 3) ? new Date(): new Date(arguments[0], arguments[1], arguments[2]);
  24.                 var total, m, n, k;
  25.                 var isEnd = false;
  26.                 var tmp = this.TheDate.getFullYear();
  27.                 total = (tmp - 1921) * 365 + Math.floor((tmp - 1921) / 4) + this.madd[this.TheDate.getMonth()] + this.TheDate.getDate() - 38;
  28.                 if (this.TheDate.getYear() % 4 == 0 && this.TheDate.getMonth() > 1) {
  29.                         total++;
  30.                 }
  31.                 for (m = 0; ; m++) {
  32.                         k = (this.CalendarData[m] < 0xfff) ? 11: 12;
  33.                         for (n = k; n >= 0; n--) {
  34.                                 if (total <= 29 + this.GetBit(this.CalendarData[m], n)) {
  35.                                         isEnd = true;
  36.                                         break;
  37.                                 }
  38.                                 total = total - 29 - this.GetBit(this.CalendarData[m], n);
  39.                         }
  40.                         if (isEnd)
  41.                                 break;
  42.                 }
  43.                 this.Year = 1921 + m;
  44.                 this.Month = k - n + 1;
  45.                 this.Day = total;
  46.                 if (k == 12) {
  47.                         if (this.Month == Math.floor(this.CalendarData[m] / 0x10000) + 1) {
  48.                                 this.Month = 1 - this.Month;
  49.                         }
  50.                         if (this.Month > Math.floor(this.CalendarData[m] / 0x10000) + 1) {
  51.                                 this.Month--;
  52.                         }
  53.                 }
  54.         },
  55.         GetcDateString: function(){
  56.                 var tmp = "";
  57.                 tmp += this.HsString.charAt((this.Year - 4) % 10);
  58.                 tmp += this.EbString.charAt((this.Year - 4) % 12);
  59.                 tmp += "年 ";
  60.                 if (this.Month < 1) {
  61.                         tmp += "(闰)";
  62.                         tmp += this.MonString.charAt(-this.Month - 1);
  63.                 } else {
  64.                         tmp += this.MonString.charAt(this.Month - 1);
  65.                 }
  66.                 tmp += "月";
  67.                 tmp += (this.Day < 11) ? "初": ((this.Day < 20) ? "十": ((this.Day < 30) ? "廿": "三十"));
  68.                 if (this.Day % 10 != 0 || this.Day == 10) {
  69.                         tmp += this.NumString.charAt((this.Day - 1) % 10);
  70.                 }
  71.                 return tmp;
  72.         },
  73.         GetLunarDay: function(solarYear, solarMonth, solarDay) {
  74.                 if (solarYear < 1921 || solarYear > 2020) {
  75.                         return "";
  76.                 } else {
  77.                         solarMonth = (parseInt(solarMonth) > 0) ? (solarMonth - 1): 11;
  78.                         this.e2c(solarYear, solarMonth, solarDay);
  79.                         return this.GetcDateString();
  80.                 }
  81.         }
  82. };

调用方法:

  1. LunarDate.GetLunarDay(2013, 1, 24);



=======================签 名 档=======================
原文地址(我的博客):http://www.clanfei.com/2013/01/1683.html
欢迎访问交流,至于我为什么要多弄一个博客,因为我热爱前端,热爱网页,我更希望有一个更加自由、真正属于我自己的小站,或许并不是那么有名气,但至少能够让我为了它而加倍努力。。
=======================签 名 档=======================




热点排行