使用bootstrap实现年月日的时间选择的方法
更新:HHH   时间:2023-1-7


小编给大家分享一下使用bootstrap实现年月日的时间选择的方法,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

使用bootstrap实现时间选择,页面需要加载以下文件:

1、CSS文件:bootstrap.min.css、bootstrap-datetimepicker.min.css

2、JS文件:jquery-1.8.3.min.js、bootstrap.min.js、bootstrap-datetimepicker.js、bootstrap-datetimepicker.zh-CN.js

使用bootstrap实现年份的选择。

bootstrap配置代码如下:

<script type="text/javascript">
$('.form_datetime').datetimepicker({
    language:  'zh-CN',
    minView: 4,         format: 'yyyy',
    startDate:2019,
    autoclose: 1,
    startView: 4,
});
</script>

使用bootstrap实现月份的选择。

bootstrap配置代码如下:

<script type="text/javascript">
$('.form_datetime').datetimepicker({
    format: 'mm',
    autoclose:true,
    startView:3,
    minView:3,
    maxView:3,
    initialDate:new Date(),
    language:'zh-CN'
});
</script>

使用bootstrap实现年月日的选择。

bootstrap配置代码如下:

<script type="text/javascript">
$('.form_datetime').datetimepicker({
     format: 'yyyymmdd',
     weekStart: 1,
     autoclose: true,
     startView: 2,
     minView: 2,
    language:'zh-CN'
});
</script>

实现的效果如下:

以上是使用bootstrap实现年月日的时间选择的方法的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注天达云行业资讯频道!

返回web开发教程...