我正在使用正在使用的http://freqdec.github.io/datePicker/项目跟踪on change事件时遇到了一些麻烦,并且如果使用onChange事件处理程序,则无法获得所选日期任何人都熟悉它,如何跟踪选定的日期并获取其值?
$("#CallDate").on("change",function(){
var selected = $(this).val();
alert(selected);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="col-lg-6">
<div class="form-group">
<label for="CallDate">Date *</label>
<span id="date_format" class="span-label">
<input type="text" class="form-control required date-
input" id="CallDate" name="CallDate" value=""
placeholder="Select Call Date" aria-
describedby="date_format" />
</div>
</div>