日期大写
日期大写的输出
假设今天是2019年8月27日13点5分39秒 返回 => 贰零壹玖年捌月贰拾柒日壹拾叁点伍分叁拾玖秒
function myfunction(){
var date=new Date();
console.log(date);
var cha=["零","壹","贰","叁","肆","伍","陆","柒","捌","玖",];
var year=date.getFullYear().toString();
var month=(date.getmonth()+1).toString();
var day=date.getDate().toString();
var shi=date.getHours().toString();
var fen=date.getMinutes().toString();
var miao=date.getSeconds().toString();
var result="";
for(var i=0;i<year.length;i++){
result += cha[year.charAt(i)];
}
result += "年";
if(month.length==2){
if(month.charAt[0]=="1"){
result+=("拾"+cha[month.charAt(1)]);
}
}else{
result+=(cha[month.charAt(0)]);
}
result += "月";
if(day.length==2){
if(day.charAt[1]=="0"){
result+=(cha[day.charAt(0)]+"拾");
}else{ result+=(cha[day.charAt(0)]+"拾"+cha[day.charAt(1)]);}
} else{
result+=(cha[day.charAt(0)]);
}
result += "日";
if(shi.length==2){
if(shi.charAt[1]=="0"){
result+=(cha[shi.charAt(0)]+"拾");
}else{ result+=(cha[shi.charAt(0)]+"拾"+cha[shi.charAt(1)]);}
} else{
result+=(cha[shi.charAt(0)]);
}
result += "点";
if(fen.length==2){
if(fen.charAt[1]=="0"){
result+=(cha[fen.charAt(0)]+"拾");
}else{ result+=(cha[fen.charAt(0)]+"拾"+cha[day.charAt(1)]);}
} else{
result+=(cha[fen.charAt(0)]);
}
result += "分";
if(miao.length==2){
if(miao.charAt[0]=="0"){
result+=(cha[miao.charAt(0)]+"拾");
}else{ result+=(cha[miao.charAt(0)]+"拾"+cha[miao.charAt(1)]);}
} else{
result+=(cha[miao.charAt(0)]);
}
result += "秒";
return result;
}
console.log(myfunction());
文章创建于: 2019-08-27 21:13:58
相关阅读
在Excel中经常需要录入日期,把数据都录入到Excel后通常会利用日期进行筛选。下面是seo实验室小编带来的关于如何用excel筛选日期的
原文地址:https://blog.csdn.net/junshuaizhang/article/details/8559708 java.text.NumberFormat类有三个方法可以产生下列数据
1. 将日期转换为指定的格式:比如转换成 年月日时分秒 这种格式:yyyy-MM-dd hh:mm:ss 或者 yyyy-MM-dd。当然是网上的方法,只是总结下
MONTHS_BETWEEN (date1, date2) 用于计算date1和date2之间有几个月。 如果date1在日历中比date2晚,那么MONTHS_BET
日期选择器这类常用的交互控件,往往很容易被我们忽略。而正是这些常用元素的设计,才能体现产品的专注和用心程度。日期选择控件(选择