使用jQuery ui datepicker格式化实际日期

时间:2014-11-20 02:13:06

标签: javascript jquery jquery-ui datepicker

我使用jQuery UI Datepicker为日期范围创建了一个表单。

 <form action="activity_report_date_range.php" method="GET" name="search_reporting" id="search_reporting"><br />
    <label for="from">Start Date:</label><br>
    <input type="text" id="from" name="from"><br><br>
    <label for="to">Last Date:</label><br>
    <input type="text" id="to" name="to">
  <input style="margin-bottom: 20px" type="submit" name="submit_search" id="submit" value="Search" placeholder="Submit">
</form>

我正在使用Google托管的jQuery UI。一切似乎都运行正常,但我想用破折号格式化日期,而不是正斜杠。

例如,

我希望将日期输入为:2014-11-05(Y-m-d)而不是目前正在填充的日期,11/05/2014

“破折号”和日期格式y-m-d是我正在寻找的。似乎无法得到它。这是一个jsfiddle:

http://jsfiddle.net/tz53ujqo/

1 个答案:

答案 0 :(得分:4)

更新:您可以像这样调用dateformat:

$( "#to" ).datepicker({
  dateFormat: 'yy-mm-dd',
});

http://jsfiddle.net/tz53ujqo/2/