작성일 : 16-06-06 23:36
|
[JQuery] datepicker
|
|
|
글쓴이 :
조형래
 조회 : 2,557
|
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery.min.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script>
$(function() {
$( "#datepicker1" ).datepicker({
dateFormat: 'yy-mm-dd'
});
});
</script>
생년월일: <input type="text" id="datepicker1">
|
|