datepicker() - input 달력 > 공책

본문 바로가기
010.6356.7610
  • design1001@naver.com
  • @design1001
작업물 전체보기

PHP with GNU

PHP with GNU datepicker() - input 달력

페이지 정보

  • 작성자후야
  • 조회 : 310
  • 작성일 : 2021-01-27 23:52

본문

datepicker() - input 달력

그누보드 내 datepicker() 함수를 이용한 달력 출력

<?php
include_once(G5_PLUGIN_PATH.'/jquery-ui/datepicker.php'); 
?>
<inputtype="text" name="" id=""  value=""  class="frm_input datepicker" >

 <!-- 달력 시작-->

<script type="text/javascript">
//<![CDATA[
$(function(){
    $(".datepicker").datepicker({
        dateFormat: "yy-mm-dd",
        onSelect:function(dateText, inst) {
            console.log(dateText);
            console.log(inst);
        }
    });
});
//]]>
</script><!-- 달력 끝 -->