在jQuery datepicker中更改日期格式与MySQL格式相同

时间:2014-05-15 12:13:03

标签: php jquery mysql sql datepicker

我正在使用jQuery日期选择器,问题是日期的格式,我希望格式与MySQL日期格式相同,因为我没有在MySQL表中获得正确的日期值,我粘贴了代码如下。

<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script type="text/javascript">
$(function() {
var date = new Date();
var currentMonth = date.getMonth();
var currentDate = date.getDate();
var currentYear = date.getFullYear();
$('#pdate').datepicker({
minDate: new Date(currentYear, currentMonth, currentDate)

});
});
</script>

表格

<input type="text" name="date" title="" placeholder="mm / dd / yyyy" class="date" id="pdate"  required="required"/>

目前日期选择器的日期格式为05/16/2014,MySQL的日期格式为MM-DD-YYYY

2 个答案:

答案 0 :(得分:4)

喜欢这个

$("#pdate").datepicker({showOn: 'focus',changeMonth: true,
    changeYear: true,dateFormat: 'mm-dd-yy',
    minDate: new Date(currentYear, currentMonth, currentDate)
 });

您需要将dateFormat属性添加到datepicker()函数中。

了解详情here

答案 1 :(得分:1)

dateFormat添加到您的日期选择工具

$('#pdate').datepicker({ 
   minDate: new Date(currentYear, currentMonth, currentDate),  
   dateFormat: 'mm-dd-yy'
});