我正在为我的新网站使用 Bootstrap V4,发现它处于 Alpha 版本。
但是我看不到它的构建中有 datepicker.js。
有谁知道这是否会包含在 V4 中?如果没有,有人可以推荐一个好的日期选择器吗?
我正在为我的新网站使用 Bootstrap V4,发现它处于 Alpha 版本。
但是我看不到它的构建中有 datepicker.js。
有谁知道这是否会包含在 V4 中?如果没有,有人可以推荐一个好的日期选择器吗?
也许你想试试这个:https ://bootstrap-datepicker.readthedocs.org/en/latest/index.html
它是 Bootstrap 风格的灵活日期选择器小部件。
您可以使用它,然后您可以class
从引导程序中添加一个表单。
(不管哪个版本)
<div class="form-group">
<label >Begin voorverkoop periode</label>
<input type="date" name="bday" max="3000-12-31"
min="1000-01-01" class="form-control">
</div>
<div class="form-group">
<label >Einde voorverkoop periode</label>
<input type="date" name="bday" min="1000-01-01"
max="3000-12-31" class="form-control">
</div>
当我写这个答案时,大多数引导程序日期选择器在包含在引导程序 4 中时都相当有问题。在我看来,添加代码最少的解决方案是一个 jQuery 插件。我用了这个https://plugins.jquery.com/datetimepicker/ - 你可以在这里看到它的用法:https ://xdsoft.net/jqplugins/datetimepicker/ 它肯定不如整个 BS 界面那么流畅,但它只需要它的 css 和 js 文件以及已经包含在 bootstrap 中的 jQuery。