简体   繁体   English

如何重新初始化引导datetimepicker?

[英]How to re-initialize the bootstrap datetimepicker?

I have a Two datetimepicker on my page. 我的页面上有两个datetimepicker。 Name as 'SartDate' and 'EndDate'.Select the date on StartDate, this date set as a minDate of 'EndDate'.First time is work Correctly.But the date of 'StartDate' reset, the minDate of 'EndDate' Not re-initiliaz 分别命名为'SartDate'和'EndDate'。在StartDate上选择日期,该日期设置为'EndDate'的minDate。第一次工作正常,但是重置了'StartDate'的日期,'EndDate'的minDate不再-初始

var date = null;
    $("#jobPublishDate").bind("keyup blur change mouseup", function () {
    $('#jobPublishDate').datetimepicker({ format: 'DD/MM/YYYY H:mm', showTodayButton: true, showClear: true, showClose: true });
        var from = $("#jobPublishDate").val().split("/");
        var newdate = from[1] + "/" + (from[0]) + "/" +from[2];
        var f = new Date(newdate);
        date = f;
    });

    $("#jobCloseDate").focusin(function () {
    $('#jobCloseDate').datetimepicker({ format: 'DD/MM/YYYY H:mm', showTodayButton: true, showClear: true, showClose: true, minDate: date });
           });
       });
<label>StartDate></label>
<input ng-model="job.StrPublishDate" id="jobPublishDate">
<br/>
<label>EndDate></label>
<input ng-model="job.StrCloseDate" id="jobCloseDate">

You need to hook to the dp.change event (fired when the date has been selected) an use minDate method to set the minimum date on the second picker. 您需要使用dp.change事件(选择日期后触发)使用minDate方法设置第二个选择器上的最小日期。

var date = null;

$("#jobPublishDate").bind("keyup blur change mouseup", function () {
    $('#jobPublishDate').datetimepicker({ format: 'DD/MM/YYYY H:mm', showTodayButton: true, showClear: true, showClose: true })
    var from = $("#jobPublishDate").val().split("/");
    var newdate = from[1] + "/" + (from[0]) + "/" +from[2];
    var f = new Date(newdate);
    date = f;
});

// Adds the date change event to the first picker
$("#jobPublishDate").on('db.change', function (e) {
    // Get the DateTimePicker instance
    var dp = $('#jobCloseDate').data('DateTimePicker');
    // If the second picker has been initialized
    if(typeof dp !== 'undefined') {
        // Set the minimum date on the second picker
        dp.minDate(e.date);
    } else {
        // If the close date picker is not initialized, stores the date for later use
        date = e.date;
    }
});

$("#jobCloseDate").focusin(function () {
    $('#jobCloseDate').datetimepicker({ format: 'DD/MM/YYYY H:mm', showTodayButton: true, showClear: true, showClose: true, minDate: date });
});

You can find out more about DateTimePicker methods here . 您可以在此处找到有关DateTimePicker方法的更多信息。

var date = null;
$("#jobPublishDate").bind("keyup blur change mouseup", function () {
var from = $("#jobPublishDate").val().split("/");
var newdate = from[1] + "/" + (from[0]) + "/" + from[2];
var f = new Date(newdate);
date = f;
$("#jobPublishDate").on('dp.change', function (e) {
var dp = $('#jobCloseDate').data('DateTimePicker');
if (typeof dp !== 'undefined') {
dp.minDate(e.date);
} 
else {
date = e.date;
}
});

$("#jobCloseDate").focusin(function () {
$('#jobCloseDate').datetimepicker({ format: 'DD/MM/YYYY H:mm', showTodayButton: true, showClear: true, showClose: true, minDate: date });
});

Fellow this Code and Solve the Problem. 遵循本规范并解决问题。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM