嗨,我使用此代碼來顯示基於select的到期日期。在日期選擇器上更改日期格式
<script>
$(function(){
$("#date_picker").datepicker();
$("#Plano_Id").change(function() {
var offset = +$(this).find("option:selected").attr("title"), /* get days to add on date*/
theDate = new Date();
theDate.setDate(theDate.getDate() + offset);
$("#date_picker").datepicker("setDate", theDate);
});
});
</script>
但是,這會返回格式爲mm/dd/yyyy
的日期。我試圖表現出dd/mm/yyyy
使用具有dateformat選項的最新版本的jQuery UI – Diode