맛집 여행 캠핑 일상 생활

[jQuery] 달력 picker API 본문

jQuery

[jQuery] 달력 picker API

영은파더♥ 2020. 4. 24. 09:25

jQuery 달력 picker api 가 있는줄 모르고 어렵게 프로그래밍 했었는데 진작 알았더라면 좋았겠네요~

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>datepicker demo</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.12.4.js"></script>
  <script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
    $(document).ready(function(){
      $( "#datepicker" ).datepicker();
    });
  </script>
</head>
<body>
<div id="datepicker"></div>
</body>
</html>

출처 : https://api.jqueryui.com/datepicker/#option-dateFormat

샘플소스는 위의 이미지 처럼 나옵니다~

 

Trackback : | Comments :