我想在 jquery 中显示特定年份的 12 个月的日历(由用户选择),我为此使用了 jquery ui datepicker
代码如下
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Display multiple months</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: 12,
showButtonPanel: true
});
});
</script>
</head>
<body>
<div id="datepicker" ></div>
</body>
</html>
但这并没有实现我的目的,因为它显示的是从现在开始的 12 个月