温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用bootstrap实现年月日时间选择器的方法

发布时间:2020-08-24 11:28:15 来源:亿速云 阅读:1190 作者:小新 栏目:web开发

这篇文章将为大家详细讲解有关使用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实现年份的选择

bootstrap配置代码如下:

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

实现的效果如下:

使用bootstrap实现年月日时间选择器的方法

使用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实现年月的选择

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实现年月日的选择

bootstrap配置代码如下:

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

实现的效果如下:

使用bootstrap实现年月日时间选择器的方法

使用bootstrap实现年月日时分秒的选择

bootstrap配置代码如下:

<script type="text/javascript">
$('.form_datetime').datetimepicker({
         language : 'zh-CN',
         format : 'yyyy-mm-dd hh:ii:ss',
         weekStart: 1,
         todayBtn:  1,
         autoclose: 1,
         todayHighlight: 1,
         startView: 2,
         forceParse: 0,
         showMeridian: 1
});
</script>

实现的效果如下:

使用bootstrap实现年月日时间选择器的方法

使用bootstrap实现小时的选择

bootstrap配置代码如下:

<script type="text/javascript">
$('.form_datetime').datetimepicker({
        language : 'zh-CN',
        weekStart: 1,
        todayBtn:  1,
        autoclose: 1,
        todayHighlight: 1,
        startView: 1,
        minView: 0,
        maxView: 1,
        forceParse: 0
});
</script>

实现的效果如下:

使用bootstrap实现年月日时间选择器的方法

关于使用bootstrap实现年月日时间选择器的方法就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI