jquery-ui/demos/datepicker/min-max.html

34 lines
1.1 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
2009-01-02 03:56:06 +00:00
<html lang="en">
<head>
2010-09-10 12:50:53 +00:00
<meta charset="utf-8">
<title>jQuery UI Datepicker - Restrict date range</title>
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../../themes/base/jquery.ui.all.css">
2011-07-25 15:46:45 +00:00
<script src="../../jquery-1.6.2.js"></script>
2010-09-10 12:50:53 +00:00
<script src="../../ui/jquery.ui.core.js"></script>
<script src="../../ui/jquery.ui.widget.js"></script>
<script src="../../ui/jquery.ui.datepicker.js"></script>
<link rel="stylesheet" href="../demos.css">
<script>
2009-01-02 03:56:06 +00:00
$(function() {
2010-09-10 12:50:53 +00:00
$( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D" });
2009-01-02 03:56:06 +00:00
});
</script>
</head>
<body>
<div class="demo">
<p>Date: <input type="text" id="datepicker"></p>
</div><!-- End demo -->
2010-09-10 12:50:53 +00:00
<div class="demo-description">
<p>Restrict the range of selectable dates with the <code>minDate</code> and <code>maxDate</code> options. Set the beginning and end dates as actual dates (new Date(2009, 1 - 1, 26)), as a numeric offset from today (-20), or as a string of periods and units ('+1M +10D'). For the last, use 'D' for days, 'W' for weeks, 'M' for months, or 'Y' for years.</p>
2009-01-02 03:56:06 +00:00
</div><!-- End demo-description -->
</body>
</html>