0

有人知道如何在 jQuery 的 DateBox 插件中设置持续时间(http://dev.jtsage.com/jQM-DateBox2/

我在文档中看不到它。

$("#end_date").on("change", function() {
    if($("#start_date").val() !== "") {
        if($("#end_date").val() !== "") {
            var startdate = $("#start_date").datebox("getTheDate");
            var enddate = $("#end_date").datebox("getTheDate");
            var duration = enddate.getSeconds() - startdate.getSeconds(); //don't know if I have to make these to Date() objects first?

            //Want to set the durationtime here
        }
    }               
});

我试过了

$("#duration").datebox("setTheDate", duration);
$("#duration").trigger("datebox", {"method":"doset"});

但它只适用于 TimeBox

4

0 回答 0