我正在使用http://eternicode.github.io/bootstrap-datepicker/。我将数据库中的数据绑定到此字段,如下所示。
<input class="form-control datepicker" name="expense_date" value="${exp.expenseDate}" required="required">
脚本
<script src="js/bootstrap-datepicker.js"></script>
<script>
$('.datepicker').datepicker({
format : 'yyyy-mm-dd'
});
</script>
但是从数据库中检索的日期在此字段中显示为Wed Jun 18 00:00:00 IST 2014
。我需要将其显示为2014-06-18
。
我该怎么做?
答案 0 :(得分:1)
请查看此插件:
我猜你可以这么简单地使用它
var d = $.format.date("Wed Jun 18 00:00:00 IST 2014", "yyyy/MM/dd");
console.log(d);
在jsfiddle上查看demo!