32 lines
673 B
HTML
32 lines
673 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<title>JQuery Calendar Demo</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
|
|
<script type="text/javascript" src="calendar.js"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div>
|
|
<div><h2>calendar 1</h2></div>
|
|
<div class="jquery-calendar"></div>
|
|
|
|
<div><h2>calendar 2</h2></div>
|
|
<div class="jquery-calendar"></div>
|
|
</div>
|
|
|
|
<div>
|
|
<div><h2>Date-Picker</h2></div>
|
|
<div><h3>Date Picker<h3></div>
|
|
<input class="date-picker" type="text"/>
|
|
<div>
|
|
|
|
<div>
|
|
<h3>디폴트 날짜 지정<h3>
|
|
</div>
|
|
<input class="date-picker" type="text" value="2015-12-25"/>
|
|
|
|
</body>
|
|
</html>
|