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

23 lines
950 B
HTML
Raw Normal View History

2012-09-10 15:33:46 +00:00
<!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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Restrict date range</title>
<link rel="stylesheet" href="../../themes/base/all.css">
2010-09-10 12:50:53 +00:00
<link rel="stylesheet" href="../demos.css">
<script src="../../external/requirejs/require.js"></script>
<script src="../bootstrap.js">
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>
<p>Date: <input type="text" id="datepicker"></p>
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>
2012-09-10 15:33:46 +00:00
</div>
2009-01-02 03:56:06 +00:00
</body>
</html>