01.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
02.
<link rel=
"stylesheet"
href=
"/jquery/jquery.ui.all.css"
>
03.
<script src=
"/jquery/jquery-1.7.2.js"
></script>
04.
<script src=
"/jquery/jquery.ui.core.js"
></script>
05.
<script src=
"/jquery/jquery.ui.widget.js"
></script>
06.
<script src=
"/jquery/jquery.ui.datepicker.js"
></script>
07.
08.
<script src=
"/jquery/jquery.ui.datepicker-th.js"
></script>
09.
<link rel=
"stylesheet"
href=
"/jquery/demos.css"
>
10.
11.
<script>
12.
$(
function
() {
13.
$.datepicker.setDefaults( $.datepicker.regional[
""
] );
14.
$(
"#datepicker"
).datepicker( $.datepicker.regional[
"th"
] );
15.
16.
});
17.
</script>
18.
19.
<body>
20.
21.
<div class=
"demo"
>
22.
23.
<input type=
"text"
id=
"datepicker"
/>
24.
25.
26.
</div>