1.代码如下
<div class="form-group">
<label class="control-label">时间</label>
<input type="text" [ngModel]="dt.toLocaleDateString()" (focus)="showDatePicker = true;showDatePicker1 = false;" style="width:300px;" class="form-control">
<div *ngIf="showDatePicker" style="position: absolute; z-index:10; min-height:290px;">
<datepicker [(ngModel)]="dt" [showWeeks]="true" ></datepicker>
</div>
</div>
2.想要的效果是在选中时间时可以自动隐藏弹出的时间组件。
我也遇到这个问题 你解决了没