JQuery datepicker - 允许字符“M”作为 dateFormat 选项中的文字
如何允许字符“M”在日期选择器控件中被视为文字?我使用以下代码将日期选择器添加到我的页面:
$("#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”。如何解决这个问题?
How can I allow the character 'M' to be treated as literal in a datepicker control? I am using the following code to add a datepicker to my page:
$("#txtDateTime").datepicker({
showOn: 'button',
buttonImage: 'themes/Main/images/calendar.png',
buttonImageOnly: true,
dateFormat: 'mm/dd/yy 00:00 AM'
});
I want the textbox to show '07/21/2011 00:00 AM' when a date is selected using the datepicker but 'M' is treated as format character for month and the control displays '07/21/2011 00:00 AJuly'. How can fix this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须逃避文字。
You must escape litterals.