본문 바로가기
Developer/Javascript & jQuery

[jquery] 달력

by 순수한소년 2017. 1. 30.
728x90
반응형
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>jQuery UI</title>
<!-- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/redmond/jquery-ui.min.css" /> -->
</head>
<body>
    <form>
        <input type="text" id="date" size="10" />
    </form>
<!--     <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> -->
<!--     <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script> -->
<!--     <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/i18n/jquery-ui-i18n.min.js"></script> -->
<!-- 티스토리충돌로 주석처리 -->
<!--
    <script>
//        $(function() {
//            $.datepicker.setDefaults($.datepicker.regional['ja']);
//            $('#date').datepicker({
//                showOn : 'button',
//                buttonImage : 'images/calendar.png',
//                buttonImageOnly : false
//            });
//        });
    </script>
-->
</body>
</html>
cs


728x90
반응형