-
Notifications
You must be signed in to change notification settings - Fork 387
/
demo.html
52 lines (50 loc) · 1.7 KB
/
demo.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calendar Demo Test</title>
<script src="dist/js-calendar-converter.js"></script>
<style>
body {
font-family: 'Microsoft Yahei',"\5FAE\8F6F\96C5\9ED1",serif;
color: #555;
background-color: #fafafa;
position: relative;
font-size: 14px;
max-width: 800px;
margin: 10px auto;
}
.result {
width: 800px;
min-height: 410px;
border: 1px solid #ccc;
background-color: #fff;
border-radius: 5px;
outline: none;
}
code {
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
border-radius: 4px;
margin: 0 3px;
}
</style>
</head>
<body>
<form id="formDemo">
<p>调用<code>calendar.solar2lunar()</code>输出结果如下:</p>
<textarea id="result" class="result"></textarea>
<p>调用<code>calendar.solar2lunar(1987,11,01)</code>输出结果如下:</p>
<textarea id="result1" class="result"></textarea>
<p>调用<code>calendar.lunar2solar(1987, '09', 10)</code>输出结果如下:</p>
<textarea id="result2" class="result"></textarea>
</form>
</body>
<script>
document.getElementById("result").value = JSON.stringify(calendar.solar2lunar(), null, 4);
document.getElementById("result1").value = JSON.stringify(calendar.solar2lunar(1987, 11, 1), null, 4);
document.getElementById("result2").value = JSON.stringify(calendar.lunar2solar(1987, '09', 10), null, 4); // 注意这里故意用带前导0的字符串
</script>
</html>