当前位置:   article > 正文

js把年月天(十九年十一个月二十八天)转为数字格式(19年11个月28天)_js时间格式为纯数字是什么格式

js时间格式为纯数字是什么格式
<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<title></title>
	</head>
	<body>
		<input type="" name="" id="uppercase" value="" />
		<div id="num">
			
		</div>
	</body>
	<script type="text/javascript">
		function zwTransformNum(str) {
			let numStr = "一二三四五六七八九十";
			let yearStr = ``;
			let year = ``;
			let monthStr = ``;
			let month = ``;
			let dateStr = ``;
			let date = ``;
			if (str.indexOf("年") != -1) {
				yearStr = str.substring(0, str.indexOf("年"));

				if (yearStr.length == 3) {
					year += numStr.indexOf(yearStr.substring(0, 1)) + 1;
					year += numStr.indexOf(yearStr.substring(2, 3)) + 1;
					year += "年";
				} else if (yearStr.length == 2) {
					year += "1";
					year += numStr.indexOf(yearStr.substring(1, 2)) + 1;
					year += "年";
				} else if (yearStr.length == 1) {
					year += numStr.indexOf(yearStr.substring(0, 1)) + 1;
					year += "年";
				}
				if (str.indexOf("月") != -1) {
					monthStr = str.substring(str.indexOf("年") + 1, str.indexOf("月"));
					if (monthStr.length == 3) {
						month += "1";
						month += numStr.indexOf(monthStr.substring(1, 2)) + 1;
						month += "个月";
					} else if (monthStr.length == 2) {
						month += numStr.indexOf(monthStr.substring(0, 1)) + 1;
						month += "个月";
					}
					if (str.indexOf("天") != -1) {
						dateStr = str.substring(str.indexOf("月") + 1, str.indexOf("天"));
						if (dateStr.length == 3) {
							date += numStr.indexOf(dateStr.substring(0, 1)) + 1;
							date += numStr.indexOf(dateStr.substring(2, 3)) + 1;
							date += "天";
						} else if (dateStr.length == 2) {
							date += "1";
							date += numStr.indexOf(dateStr.substring(1, 2)) + 1;
							date += "天";
						} else if (dateStr.length == 1) {
							date += numStr.indexOf(dateStr.substring(0, 2)) + 1;
							date += "天";
						}
					}
				}
			} else if (str.indexOf("月") != -1) {
				monthStr = str.substring(0, str.indexOf("月"));
				if (monthStr.length == 3) {
					month += "1";
					month += numStr.indexOf(monthStr.substring(1, 2)) + 1;
					month += "个月";
				} else if (monthStr.length == 2) {
					month += numStr.indexOf(monthStr.substring(0, 1)) + 1;
					month += "个月";
				}
				if (str.indexOf("天") != -1) {
					dateStr = str.substring(str.indexOf("月") + 1, str.indexOf("天"));
					if (dateStr.length == 3) {
						date += numStr.indexOf(dateStr.substring(0, 1)) + 1;
						date += numStr.indexOf(dateStr.substring(2, 3)) + 1;
						date += "天";
					} else if (dateStr.length == 2) {
						date += "1";
						date += numStr.indexOf(dateStr.substring(1, 2)) + 1;
						date += "天";
					} else if (dateStr.length == 1) {
						date += numStr.indexOf(dateStr.substring(0, 2)) + 1;
						date += "天";
					}
				}
			} else if (str.indexOf("天") != -1) {
				dateStr = str.substring(0, str.indexOf("天"));
				if (dateStr.length == 3) {
					date += numStr.indexOf(dateStr.substring(0, 1)) + 1;
					date += numStr.indexOf(dateStr.substring(2, 3)) + 1;
					date += "天";
				} else if (dateStr.length == 2) {
					date += "1";
					date += numStr.indexOf(dateStr.substring(1, 2)) + 1;
					date += "天";
				} else if (dateStr.length == 1) {
					date += numStr.indexOf(dateStr.substring(0, 2)) + 1;
					date += "天";
				}
			}
			console.log(year + month + date)
			document.getElementById("num").innerHTML = year + month + date;
		
		}
		
		document.getElementById("uppercase").oninput = function() {
			console.log(document.getElementById("uppercase").value)
			zwTransformNum(document.getElementById("uppercase").value);
		}
	</script>
</html>

  • 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
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/117219
推荐阅读
相关标签
  

闽ICP备14008679号