JQuery datepicker - 在dateFormat选项中允许字符'M'作为文字

时间:2011-07-22 14:32:01

标签: jquery jquery-ui-datepicker date-format

如何在datepicker控件中允许将字符“M”视为文字?我使用以下代码将datepicker添加到我的页面:

    $("#txtDateTime").datepicker({
        showOn: 'button',
        buttonImage: 'themes/Main/images/calendar.png',
        buttonImageOnly: true,
        dateFormat: 'mm/dd/yy 00:00 AM'
    });

我希望文本框在使用日期选择器选择日期时显示'07 / 21/2011 00:00 AM',但是'M'被视为月份的格式字符,控件显示'07 / 21/2011 00 :00 AJuly'。怎么解决这个问题?

1 个答案:

答案 0 :(得分:0)

你必须逃避琐事。

$("#txtDateTime").datepicker({
    showOn: 'button',
    buttonImage: 'themes/Main/images/calendar.png',
    buttonImageOnly: true,
    dateFormat: 'mm/dd/yy 00:00 AM'
});