jQuery mobile DateBox插件 - 设置持续时间

时间:2013-10-06 11:09:12

标签: jquery jquery-mobile datebox

有人知道如何在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

0 个答案:

没有答案