从jQuery动态日历中的文本框中获取日期

时间:2014-06-27 00:15:58

标签: c# jquery google-calendar-api

我正在使用dynamicdatetime jQuery(http://code.google.com/p/dyndatetime/)更新文本框中的日期时间。

enter image description here

如您所见,我可以从文本框中获取时间,但是Date会以随机方式填充。

<script type="text/javascript">
$(document).ready(function () {
    $("#<%=txtLoginTime.ClientID %>").dynDateTime({
        showsTime: true,
        ifFormat: "%Y/%m/%d %H:%M",
        daFormat: "%l;%M %p, %e %m,  %Y",
        align: "BR",
        electric: false,
        singleClick: false,
        displayArea: ".siblings('.dtcDisplayArea')",
        button: ".next()"

    });
    $("#<%=txtLogOutTime.ClientID %>").dynDateTime({
        showsTime: true,
        ifFormat: "%Y/%m/%d %H:%M",
        daFormat: "%l;%M %p, %e %m,  %Y",
        align: "BR",
        electric: false,
        singleClick: false,
        displayArea: ".siblings('.dtcDisplayArea')",
        button: ".next()"

    });
});
</script>

任何一个例子都是apreciated。

1 个答案:

答案 0 :(得分:1)

更改日期格式。

        ifFormat: "%d/%m/%Y %H:%M",