选择div在哪里加载Bootstrap Datepicker

时间:2016-11-21 11:40:56

标签: javascript jquery css datepicker bootstrap-datepicker

我有自己的下拉列表,我想加载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>

1 个答案:

答案 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