我有自己的下拉列表,我想加载Bootstrap Datepicker,在文档中我找不到任何相关信息。我的JSFiddle是关于我想要制作的例子
这就是我的HTML查找方式,我想添加datepicker
<div class="my-example">
<input id="" placeholder="press to show calendar" class="input">
<div class="dropdown">
there is div, where I need to load my datepicker
</div>
</div>
答案 0 :(得分:2)
添加div以便加载选择器:
<div class="dropdown">
<div class="datetimepickerinline">
there is div, where I need to load my datepicker
</div>
</div>
然后定位新div(这样它不会与bootstrap下拉列表冲突等):
$('.datetimepickerinline').datetimepicker({inline: true});
完成此项工作的关键是将inline
属性设置为true
。