简体   繁体   English

Bootstrap Glyphicons datetimepicker更改图标

[英]Bootstrap Glyphicons datetimepicker change icons

I am using Bootstrap datetimepicker https://eonasdan.github.io/bootstrap-datetimepicker/ 我正在使用Bootstrap datetimepicker https://eonasdan.github.io/bootstrap-datetimepicker/

As mentioned in the document I was successfully able to change the up, down arrows using below code. 正如文档中提到的,我成功地使用下面的代码更改了向上和向下箭头。

$('#datetimepicker7').datetimepicker({
    sideBySide: true,
    icons: {
        up: "fa fa-chevron-circle-up",
        down: "fa fa-chevron-circle-down",
    }
});

May I know how to change the left, right icons of the calendar? 我可以知道如何更改日历的左右图标吗? For easy understanding I have highlighted the icons to be changes in below image. 为了便于理解,我在下图中突出显示了要更改的图标。

Bootstrap Glyphicons图像

Any help would be highly appreciated. 任何帮助将受到高度赞赏。

In order to change left and right icons you just need to change in the below code: 要更改左右图标,您只需更改以下代码:

icons: {
        time: 'glyphicon glyphicon-time',
        date: 'glyphicon glyphicon-calendar',
        up: 'glyphicon glyphicon-chevron-up',
        down: 'glyphicon glyphicon-chevron-down',
        //previous: 'glyphicon glyphicon-chevron-left',
        previous: 'glyphicon glyphicon-backward',
        next: 'glyphicon glyphicon-chevron-right',
        today: 'glyphicon glyphicon-screenshot',
        clear: 'glyphicon glyphicon-trash',
        close: 'glyphicon glyphicon-remove'
    },

By default the line which i have commented that icon is showing so if u need to change that icon you just simply have to set the path or any icon which you want to show. 默认情况下,我评论该图标的行显示,如果您需要更改该图标,您只需设置路径或任何您想要显示的图标。

You can refer below link: https://eonasdan.github.io/bootstrap-datetimepicker/Options/ 您可以参考以下链接: https//eonasdan.github.io/bootstrap-datetimepicker/Options/

You just have to insert previous and next keys in your icons object in the configuration as stated in the docs . 您只需在文档中所述的配置中的icons对象中插入previousnext键。

 $('#datetimepicker7').datetimepicker({ sideBySide: true, icons: { up: "fa fa-chevron-circle-up", down: "fa fa-chevron-circle-down", next: 'fa fa-chevron-circle-right', previous: 'fa fa-chevron-circle-left' } }); 
 <link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/css/bootstrap.css" rel="stylesheet"/> <link href="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/css/bootstrap-datetimepicker.css" rel="stylesheet"/> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css" rel="stylesheet"/> <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.13.0/moment.min.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.6/js/bootstrap.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/4.17.37/js/bootstrap-datetimepicker.min.js"></script> <div class="form-group"> <div class="input-group date" id="datetimepicker7"> <input type="text" class="form-control" /> <span class="input-group-addon"><span class="glyphicon-calendar glyphicon"></span></span> </div> </div> 

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM