-1
私は分度器を使用している初心者です。今はページのテストケースを作成しています。あなたはカレンダーのイベントを取得し、日付&時間を取得する方法を教えてくださいできますか?私はあなたの親切な助けに本当に誠に感謝しています。分度器でカレンダーe2eケースを書くには?
//from when and what time you want to take vacation
<div>
<label class="control-label " for="startDate">Start Date</label>
<div class="input-group">
<input type="text" class="form-control ng-valid ng-isolate-scope ng-valid-datetime ng-dirty ng-touched" name="startDate" placeholder="StartDate" datetime-picker="" ng-model="olNew.startDate" default-time="09:00" is-open="open.date3">
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="openCalendar($event, 'date3')"><i class="fa fa-calendar"></i></button>
</span>
</div>
</div>
//When and at what time you will end vacation
<div class="form-group ">
<label class="control-label " for="endDate">
End Date
</label>
<div class="input-group">
<input type="text" class="form-control ng-valid ng-isolate-scope ng-valid-datetime ng-dirty ng-touched" name="endDate" placeholder="EndDate" datetime-picker="" ng-model="olNew.endDate" default-time="09:30" is-open="open.date4">
<span class="input-group-btn">
<button type="button" class="btn btn-default" ng-click="openCalendar($event, 'date4')"><i class="fa fa-calendar"></i></button>
</span>
</div>
</div>
<div class="form-group ">
<label class="control-label " for="totalHours">
Total Hours
</label>
<input class="form-control" id="totalHours" name="totalHours" placeholder="Total Hours" type="text" ng-model="olNew.ioHours"/>
</div>
Here is the screenshot of the calendar:
この種のカレンダーでデモページを提供できますか?ありがとう。 – alecxe
カレンダーのスクリーンショットがアップロードされました。あなたの助けを大いにありがとう –