出生日期字段的Combodate日期选择器边界问题

时间:2015-07-10 04:45:14

标签: javascript jquery html css combodate

我正在为我的应用程序使用combodate下拉日期选择器。当我在firefox浏览器中打开它时边界不会出现问题。

下面的图片清楚地表明了正在发生的事情。

enter image description here

这里的月份字段下拉列表边框未来。

但即将到来的日期和年份工作正常。 enter image description here

我没有得到它出错的地方。请帮我解决这个问题。

非常感谢...

2 个答案:

答案 0 :(得分:0)

这是由于firefox Reference

中的错误造成的

理想情况下,您可以在您的css中为您的特定选择下拉菜单提供99.99%而不是100%的宽度。

答案 1 :(得分:0)

我在combodate.js中解决了这个问题,我们有一个js行

this.$widget.find('select').css('width', 'auto').addClass('form-control');

和我做到了

this.$widget.find('select').css('width', '92px').addClass('form-control');

这有助于我在所有浏览器和ipad / iphone中正常运行。