문제

I have problem with code:

<div class="control-group input-append date">
  <label class="control-label" for="cid">Check In</label>
  <div class="controls">
    <input class="span8 required" name="cid" type="text" id="cid">
    <span class="add-on"><i class="icon-calendar"></i></span>
  </div>
</div>

and the javascript:

<script>
   $('#cid').datepicker();
</script>

Exactly I have done insert jquery and datepicker javascript.

Problem:

  1. The date can't auto close. I want to after click date, the table date will autoclose.

  2. The icon calender can't click. I want to if user click icon calender beside form input, the table calender will showing.

Thanks

도움이 되었습니까?

해결책

Can you try :

$('.datepicker tbody').on('click', function(){  $('.datepicker').hide() });



$('.icon-calendar').on('click', function(){ $('.datepicker').toggle()   });

You have to precise the jquery selector in case where you have multi icon calendar or datepicker;

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top