我正在尝试使用bootstrap-ui的datepicker来显示它的弹出窗口,其中包含一个没有函数的onclick
<input class="form-control" name="dob" type="text"
datepicker-popup ng-model="user.dateOfBirth"
is-open="opened" max="maxDate"
placeholder="Your DOB" required>
<span class="input-group-btn">
<button type="button" ng-click="opened = !opened">
<i class="glyphicon-calendar"></i>
</button>
</span>
它正确设置了值,但是在其他东西导致循环之前不会显示日期选择器。