第3个回答 2018-05-18
直接使用插件的回调函数即可;
$('#timepicker').datetimepicker({
showHour: true,
showMinute: true,
dateFormat: "yy-mm-dd",
timeFormat: 'HH:MM',
onSelect:function(dateText, inst) {
//alert(dateText);//OK
window.location.href = "getData.do?date="+dateText;
}
});