概述,用来bootstrap-datatimepicker 的日期控件,现在想要获取控件的值,去官网找API,发现居然没有更新文档,只能去stackflow找到了。
直接贴代码吧
<li id="startTime" class="input-append date form_datetime">开始时间: <input
size="20" type="text" value="" readonly> <span
class="add-on calendarIcon"><i
class="icon-calendar glyphicon glyphicon-th"></i></span>
</li>
获取值:
方法一:
$("#startTime").data("datetimepicker").getDate()
方法二:
$("#startTime").find("input").val();
如果想要有格式化的日期,可以如下操作:
var date = $("#startTime").data("datetimepicker").getDate(),
formatted = date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + " " + date.getHours + ":" + date.getMinutes() + ":" + date.getSeconds();
alert(formatted);
<input data-format="yyyy-MM-dd hh:mm:ss" type="text"></input>
引用地址:https://stackoverflow.com/questions/16573624/get-the-value-of-bootstrap-datetimepicker-in-javascript