js小方法,获取知道公历生日 (‘1992-01-19’),获取阴历生日日期,属相,非简单根据年份判断-----------声明:整理自网络!!
let lunar = {
tg: '甲乙丙丁戊己庚辛壬癸',
dz: '子丑寅卯辰巳午未申酉戌亥',
number: '一二三四五六七八九十',
year: '鼠牛虎兔龙蛇马羊猴鸡狗猪',
month: '正二三四五六七八九十冬腊',
monthadd: [0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334],
calendar: [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],
};
// 获取阴历日期
const getLunarDate = (date) => {
let useDate = new Date();
let year,
month,
day;
if (!date) {
date = new Date(), year = date.getFullYear(), month = date.getMonth(), day = date.getDate();
} else {
date = date.split('-'), year = parseInt(date[0]), month = date[1] - 1, day = parseInt(date[2]);
}
if (year < 1921 || year > 2020) {
return {};
}
let total,
m,
n,
k,
bit,
lunarYear,
lunarMonth,
lunarDay;
let isEnd = false;
let tmp = year;
if (tmp < 1900) {
tmp += 1900;
}
total = (tmp - 1921) * 365 + Math.floor((tmp - 1921) / 4) + lunar.monthadd[month] + day - 38;
if (year % 4 == 0 && month > 1) {
total++;
}
for (m = 0; ; m++) {
k = (lunar.calendar[m] < 0xfff) ? 11 : 12;
for (n = k; n >= 0; n--) {
bit = (lunar.calendar[m] >> n) & 1;
if (total <= 29 + bit) {
isEnd = true;
break;
}
total = total - 29 - bit;
}
if (isEnd) break;
}
lunarYear = 1921 + m;
lunarMonth = k - n + 1;
lunarDay = total;
if (k == 12) {
if (lunarMonth == Math.floor(lunar.calendar[m] / 0x10000) + 1) {
lunarMonth = 1 - lunarMonth;
}
if (lunarMonth > Math.floor(lunar.calendar[m] / 0x10000) + 1) {
lunarMonth--;
}
}
return {
lunarYear,
lunarMonth,
lunarDay,
};
};
// 获取阴历年信息
const getLunarDateString = (lunarDate) => {
if (!lunarDate.lunarDay) return;
let data = {};
let lunarYear = lunarDate.lunarYear;
let lunarMonth = lunarDate.lunarMonth;
let lunarDay = lunarDate.lunarDay;
data.tg = lunar.tg.charAt((lunarYear - 4) % 10);
data.dz = lunar.dz.charAt((lunarYear - 4) % 12);
data.year = lunar.year.charAt((lunarYear - 4) % 12);
data.month = lunarMonth < 1 ? `(闰)${lunar.month.charAt(-lunarMonth - 1)}` : lunar.month.charAt(lunarMonth - 1);
data.day = (lunarDay < 11) ? '初' : ((lunarDay < 20) ? '十' : ((lunarDay < 30) ? '廿' : '三十'));
if (lunarDay % 10 != 0 || lunarDay == 10) {
data.day += lunar.number.charAt((lunarDay - 1) % 10);
}
return data;
};
export default {
getLunarDate,
getLunarDateString,
};
用法:
js小方法,获取知道公历生日 (‘1992-01-19’),获取阴历生日日期,属相,非简单根据年份判断-----------声明:整理自网络!!的更多相关文章
- 经常使用的js小方法
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <% Strin ...
- js小方法积累,将一个数组按照n个一份,分成若干数组
// 把一个数组按照一定长度分割成若干数组 function group(array, subGroupLength) { let index = 0; let newArray = []; whil ...
- 小程序-调用公共js对象方法/ app.js
在小程序中,如果在子页面想调用共公js的方法,需先在子页面js中先实例化app:具体过程如下 子页面js: 1 2 3 4 5 6 7 8 //调用公共js对象以便调用其方法 var app = ge ...
- JS小积累(二)— 自动获取浏览器尺寸
JS小积累-获取浏览器窗口尺寸 作者: 狐狸家的鱼 GitHub:八至 autodivheight(); function autodivheight() { //函数:获取尺寸 //获取浏览器窗口高 ...
- js便携小方法,你值得拥有
引言: 本章没有深奥的讲解js一些底层原理,比如this指针.作用域.原型啦,涉及的都是一些有利于平时开发时简化代码,提高执行效率,或者说可以当做一种经验方法来使用,篇幅都不长,小步快跑的让你阅读完整 ...
- React.js 小书 Lesson7 - 组件的 render 方法
作者:胡子大哈 原文链接:http://huziketang.com/books/react/lesson7 转载请注明出处,保留原文链接和作者信息. React.js 中一切皆组件,用 React. ...
- js 日期计算星座 根据生日的月份和日期,一行代码计算星座的js小函数(转)
本博客根据 开源中国作者清风徐不来 的文章 根据生日的月份和日期,一行代码计算星座的js小函数(转) 原文出自CSDN 无心的专栏 的文章,知识产权归原文作者所有! 点击查看原文:js 日期计算星座
- js 原生方法获取所有兄弟节点
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="UTF-8&quo ...
- JS扩展方法——字符串trim()
转自:http://www.cnblogs.com/kissdodog/p/3386480.html <head> <title>测试JS扩展方法</title> ...
随机推荐
- HashMap 与 HashSet 联系
HashMap实现 Map接口 HashSet实现Collection接口 HashSet底层是HashMap 好的 记住这个就可以了 HashSet只存放key, value: private ...
- Mantis中文网
Mantis中文网 | Mantis安装.Mantis使用.Mantis中文http://www.mantis.org.cn/ Mantis Bug Tracker | Demohttp://www. ...
- CentOS 7 rpm -i 时 警告warning: /var/tmp/rpm-tmp.z7O820: Header V4 RSA/SHA512 Signature, key ID a14fe591: NOKEY 解决方法
这是由于yum安装了旧版本的GPG keys造成的,解决办法就是 运行下面命令即可 # rpm --import /etc/pki/rpm-gpg/RPM* 查询已安装的rpm源 # rpm -qa ...
- 解决刷新页面vuex store中数据丢失的问题
**问题背景:**页面刷新后,vuex中的数据丢失.这是因为:js代码是运行在内存中的,代码运行时的所有变量.函数也都是保存在内存中的.进行刷新页面的操作,以前申请的内存被释放,重新加载脚本代码,变量 ...
- IRepository<Developer> repository 出现 Abp.Domain.Repositories.IRepository which was not registered.
“/”应用程序中的服务器错误. Can't create component 'SWJ.SSO.DomainServices.TestService' as it has dependencies t ...
- GitHub修改用户名
刚开始用github时随便起了个名字,现在想修改名字了,自己研究了半天终于找到修改地方 1.点击settings 2.点击Account的Change username 3.点击下面红色的按钮 4.在 ...
- [curl]convert curl to python Ruby
https://curl.trillworks.com/
- pgsql 并行相关配置
- 前端ajax请求百度地图api
$.ajax({ type: "get", url: 'http://api.map.baidu.com/place/v2/search', data:{ ak:'您的ak', q ...
- python中os.path.isdir()函数的使用
在python 中,os.path.isdir(path)函数主要用来判断函数内部的path是否为一个目录 具体关于这个函数的解说参考博客https://blog.csdn.net/xjp_xujip ...