2

我已经使用了输入类型文本字段并将斑马日期选择器附加到它,现在我如何调用我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)" />
4

2 回答 2

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" />
于 2015-07-31T06:29:26.140 回答
0

Zebra Datepicker 具有事件侦听器,其中包括onSelect. 请参见下面的示例。

$(function() {
    $("#tripDate1").Zebra_DatePicker({
        format: 'm/d/Y', //Ensures format consistency
        onSelect: function() {
            //Call your update function here.
        }
    });
});
于 2018-11-04T10:52:30.530 回答