加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/jjonline/calendar.js
克隆/下载
demo.html 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
ben 提交于 2023-05-17 12:38 . *change output calendar.default to calendar
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化