我已经使用了输入类型文本字段并将zebra日期选择器附加到它,现在如何在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)" />
最佳答案
尝试使用onSelect
函数并用Javascript定义它。
<script type="text/javascript">
$(function() {
$('#tripDate1').datepicker( {
onSelect: function() {
updateDates(this.id);
}
});
});
</script>
<input id="tripDate1" style="margin-left: 3px;" type="text" />