我的页面上有一个引导日期时间选择器元素。我想在不直接单击输入字段的情况下打开此元素上的日历。我已经尝试了一切,可以获得点击事件来打开日历。
这是元素:
<div class="input-group date basedatefield">
<input type="text" name="basefield" autocomplete="off" readonly="" class="form-control" id="id_basefield" dp_config="{"id": "dp_37", "picker_type": "DATE", "linked_to": null, "options": {"showClose": false, "showClear": true, "showTodayButton": false, "format": "MM/DD/YYYY", "useCurrent": false, "ignoreReadonly": true, "keepInvalid": true}}">
<div class="input-group-addon input-group-append" data-target="#basedatetimepicker1" data-toggle="datetimepickerv">
<div class="input-group-text"><i class="glyphicon glyphicon-calendar"></i></div>
</div>
</div>
我试过这些,但它们不会模拟点击和/或打开此字段上的日历
document.getElementById('id_basefield').click();
document.getElementsByClassName('basedatefield')[0].click();
document.getElementsByClassName('input-group')[0].click();
图书馆有一个
show
方法可用:
https://bootstrap-datepicker.readthedocs.io/en/latest/methods.html#show
我认为你应该这样做:
$('.datepicker').datepicker('show');