-
Notifications
You must be signed in to change notification settings - Fork 6
/
demo.html
35 lines (34 loc) · 962 Bytes
/
demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<title>JQueryDatepickerTW Demo</title>
<link rel="stylesheet" href="Lib/jquery-ui-1.10.3.custom.css">
<script src="Lib/jquery-1.9.1.js"></script>
<script src="Lib/jquery-ui-1.10.3.custom.js"></script>
<script src="JQueryDatePickerTW.js"></script>
</head>
<body>
<label>
<input type="text" class="datepickerTW">
</label>
<label>
<input type="text" class="datepicker">
</label>
<script type="text/javascript">
$('.datepickerTW').datepickerTW({
changeYear: true,
changeMonth: true,
yearRange: '-10:1997',
dateFormat: 'yy-mm-dd',
defaultDate: '+1w'
});
$('.datepicker').datepicker({
changeYear: true,
changeMonth: true,
dateFormat: 'yy-mm-dd',
yearRange: '1911:2000',
defaultDate: '1995-01-01'
});
</script>
</body>
</html>