我正在为JQuery ui时间选择器插件的onchange而挣扎:http://trentrichardson.com/examples/timepicker/
我正在使用以下代码。
$(document).ready(function ()
{
$('#CutoffTime').timepicker({ stepMinute: 15 });
});
//试图捕捉更改事件
$(function ()
{
$('#CutoffTime').change(function ()
{
// do something heree
});
});
//我的HTML
<input type="text" id="CutoffTime" />
出于某种原因,它似乎在无限循环?有更好的方法来实现我的需求吗?
如果你往下看,他们有一个使用onselect 的例子
$('#CutoffTime').datetimepicker({
stepMinute: 15,
onSelect: function(dateText, inst){
if(window.console)
console.log(dateText);
}
});