Date: <input type="text" id=" ">
var startDate = new Date(2012,1,20);
$('#date-start')
.datepicker()
.on('changeDate', function(ev){
if (ev.date.valueOf() > endDate.valueOf()){
$('#alert').show().find('strong').text('The start date must be before the end date.');
} else {
$('#alert').hide();
startDate = new Date(ev.date);
$('#date-start-display').text($('#date-start').data('date'));
}
$('#date-start').datepicker('hide');
});
我正在尝试使用这个jquery datepicker。 如何将值日期输出传递给input type = text
答案 0 :(得分:0)
您已离开了标识blank
,为您需要id
日期的输入类型=文字指定了一些assign
。
假设$('#date-start').data('date')
将为您提供所需的日期。
HTML 的
<input type="text" id="txtDate">
的Javascript
$('#txtDate').val($('#date-start').data('date'));
或
$(':text').val($('#date-start').data('date')); // will assign date to all text fields