将jQuery Ui datepicker日期延伸到像1880这样的东西?

时间:2013-11-20 18:04:35

标签: html5 jquery-ui

注意:这只是一个问题,所以我不会在这里粘贴任何代码。

我正在为一家慈善机构开设一个日期选择器,这些慈善机构的日期可以追溯到1880年,甚至更早。

在jQuery datepicker上,你可以追溯的最远的是1913年。

我只是想知道是否可以很容易地让日期从1650年(比如300多年前)开始?还有其他人以前做过这个吗?

2 个答案:

答案 0 :(得分:1)

检查year range选项。这样的事情可能有用:

$( ".selector" ).datepicker({ yearRange: "1900:2013" });

答案 1 :(得分:0)

来自Jquery UI网站:http://jqueryui.com/datepicker/#dropdown-month-year

您可以为用户预先选择日期。您还可以允许用户使用以下选项从下拉列表中选择年份:

<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Dates in other 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({
showOtherMonths: true,
selectOtherMonths: true, 
changeMonth: true,
changeYear: true
});
});
</script>
</head>
<body>
<!-- Preselected Date here --> 
<p>Date: <input type="text" id="datepicker" value="01/02/1880"/></p>
</body>
</html>