Web/Javascript

jquery UI을 이용한 Datepicker + jQuery Calendar Plugin

saltdoll 2015. 9. 5. 08:50
반응형

jQuery UI을 이용한 Date Picker만들기


<!doctype html>

<html lang="en">

<head>

  <meta charset="utf-8">

  <title>jQuery UI Datepicker - Dates in other months</title>

  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">

  <script src="//code.jquery.com/jquery-1.10.2.js"></script>

  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>


<!--  <link rel="stylesheet" href="/resources/demos/style.css"> 해당 내용 -->

<style>

*  { font-family: "Helvetica", "Arial",  "Verdana", "sans-serif"; }

body {

font-family: "Trebuchet MS", "Helvetica", "Arial",  "Verdana", "sans-serif";

font-size: 62.5%;

}

</style>


  <script>

  $(function() {

    $( "#datepicker" ).datepicker({

      showOtherMonths: true,

      selectOtherMonths: true

    });

  });

  </script>

</head>

<body>

 

<p>Date: <input type="text" id="datepicker"></p>

 

 

</body>

</html>



jQuery Calendar Plugin 들

DEMO Page / jQuery Event Calendar Plugin examples | jQuery Event Calendar Plugin download


반응형
도움이 되셨다면 하트모양의 "♡ 공감"을 눌러주시면 큰 격려가 됩니다.
(로그인하지 않으셔도 가능)