如何在ie7中使用twitter bootstrap datepicker?

时间:2012-10-25 18:10:59

标签: twitter-bootstrap internet-explorer-7 datepicker

我的公司过去工作。我的应用程序的所有用户都必须使用ie7。如何让twitter bootstrap datepicker与IE7一起使用。它在IE8 + chrome,firefox和safari中运行良好。但我的用户不允许使用IE7以外的任何东西。

当我点击带有日期选择器的文本框时,我得到了下拉框,其长度约为2像素,宽度为50像素。但是没有日历显示。

有什么建议吗?

2 个答案:

答案 0 :(得分:2)

您可以尝试ajbeaven's fix this issue,但尚未将其合并到插件中。

更改第185行
 return $(this).css('z-index') != 'auto';

var itemZIndex = $(this).css('z-index');
return itemZIndex != 'auto' && itemZIndex !== 0;

答案 1 :(得分:1)

如果您使用的是bootstrap插件,只需在bootstrap datetimepicker css文件后将此类添加到您的css中:

.datetimepicker table tr td span {
    width: 200%!important;
}