AngularJS教程十六—— 時間選擇

hy3112發表於2016-02-02

時間選擇指令ed-date-picker、ed-time-picker

日期選擇指令和時間選擇指令

一 使用方法:

<!--日期選擇-->
<input type="text" class="form-control" ed-date-picker ng-model="time"/><!--預設格式yyyy-mm-dd-->

<!--日期範圍選擇-->
<div class="input-group input-large date-picker input-daterange" ed-date-picker>
    <input type="text" class="form-control" ng-model="startTime">
    <span class="input-group-addon">- </span>
    <input type="text" class="form-control" ng-model="endTime">
</div>


<!--時間選擇-->
<input type="text" class="form-control" ed-time-picker ng-model="time2"/><!--預設格式yyyy-mm-dd hh:ii-->

<!--時間選擇,自定義格式-->
<input type="text" class="form-control" ed-time-picker ed-date-format="yyyy-mm-dd hh" ng-model="time3"/><!--自定義格式-->

存在以下自定義屬性:

  • ed-date-format:指定日期或時間格式

相關文章