1

我在获取日期时间选择器 ( https://github.com/smalot/bootstrap-datetimepicker ) 的 Bootstrap3 版本中显示的箭头时遇到问题。

下载提供的示例也缺少箭头,但 bootstrap2 示例有箭头。

其他一切都正常工作,并单击箭头应按预期导航的位置。我假设浏览器正在搜索图标并且它们在它们应该在的位置。

想知道是否有人遇到过这个问题并知道如何解决它?否则,可能会感谢您提供有关如何进行故障排除的一些建议。

4

4 回答 4

6

此问题已通过最近对 repo 的更新得到解决。否则,在 ../bootstrap-datetimepicker.js 中搜索和替换以下行具有相同的效果:

代替:

    headTemplateV3:   '<thead>' +
                          '<tr>' +
                          '<th class="prev"><i class="icon icon-arrow-left"></i> </th>' +
                          '<th colspan="5" class="switch"></th>' +
                          '<th class="next"><i class="icon icon-arrow-right"></i> </th>' +
                          '</tr>' +
        '</thead>',

和:

headTemplateV3:   '<thead>'+
                        '<tr>'+
                            '<th class="prev"><i class="glyphicon glyphicon-arrow-left"/></th>'+
                            '<th colspan="5" class="switch"></th>'+
                            '<th class="next"><i class="glyphicon glyphicon-arrow-right"/></th>'+
                        '</tr>'+
                    '</thead>',
于 2014-05-29T20:54:34.983 回答
1

这让我发疯了一段时间。我找到的解决方案是在 timepicker.js 文件中搜索“chevron”并更改为正确的引导格式:

我打算发布一张图片,但stackoverfow不会让我:(

因此,在 timepicker.js 中搜索“chevron”并将其替换:

<i class="icon-chevron-down"></i>

有了这个:

<i class="glyphicon glyphicon-chevron-down"></i>
于 2015-05-10T05:06:46.337 回答
0

只需检查您的minDatemaxDate选项是否正确,因为如果它们不正确,箭头可能会丢失

于 2015-06-06T21:51:04.940 回答
0

我在本地托管材料图标文件..这给了我严重的问题。一旦我默认回到旧链接 rel (下面的片段),所有 IE 问题都得到了解决......

不知道是什么原因造成的。

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
于 2017-12-11T10:23:51.720 回答