我正在尝试搜索日期字段,我使用以下代码搜索datepicker,我需要将日期显示为dd-M-yy格式,但在搜索中显示为ddMyy省略&#39 ; - '之间。你能建议我吗
DateSearch = function (elem) {
setTimeout(function () {
$(elem).datepicker({
dateFormat: 'dd-M-yy',
autoSize: true,
changeYear: true,
changeMonth: true,
showWeek: true,
showButtonPanel: true
})
}, 100);
}
非常感谢在这方面的任何帮助。