我使用了输入类型的文本字段并附加了斑马日期选择器,现在我可以如何在function(updateDates())
事件上调用onchange
?
没有zebradatepicker,我可以使用updateDates()
函数..
$('#tripDate1').val(formattedDate).attr("min", formattedDateMin).Zebra_DatePicker({ direction: 1 });
<input id="tripDate1" style="margin-left: 3px;" type="text" onkeypress="return false" onkeydown="return false" onchange="updateDates(this.id)" />
答案 0 :(得分:1)
尝试使用onSelect
函数并在Javascript中定义。
<script type="text/javascript">
$(function() {
$('#tripDate1').datepicker( {
onSelect: function() {
updateDates(this.id);
}
});
});
</script>
<input id="tripDate1" style="margin-left: 3px;" type="text" />
答案 1 :(得分:0)
Zebra Datepicker具有事件监听器,其中包括onSelect
。参见下面的示例。
$(function() {
$("#tripDate1").Zebra_DatePicker({
format: 'm/d/Y', //Ensures format consistency
onSelect: function() {
//Call your update function here.
}
});
});