twitter-bootstrap – 在bootstrap-modal中的datepicker中的月份选择在Firefox中不起作用

如果日期选择器中的月份选择在引导模式中,则它在FireFox中不起作用.

<button class="btn" id="btn">Click Me</button>

<div class="modal hide" id="modal" tabindex="-1">
    <div class="modal-body">
        <input type="text" id="datepicker" />        
    </div>
</div>

JavaScript的:

$("#datepicker").datepicker({"changeMonth": true});

$('#btn').click(function() {
    $("#modal").modal('show');
});

这是一个缩小的例子:http://jsfiddle.net/nKXF2/

我找到了一个类似的twitter-bootstrap github问题:https://github.com/twbs/bootstrap/issues/5979

解决方法

我发现了这个bug的两个修复:

修复1:如果你删除div.modal中的tabindex attr,月份选择工作正常.
我对此解决方案唯一的问题是,在IE(任何版本)上,您仍然需要双击月份下拉菜单才能打开它.

修复2:您可以在以下位置找到的第二个解决方案:http://jsfiddle.net/nKXF2/1/通过覆盖this question中提出的enforceFocus函数,您可以再次使用月份下拉列表.

$('#modal').on('show', function () {
    $.fn.modal.Constructor.prototype.enforceFocus = function () { };
});

我认为第二个是最好的.

相关文章

Bootstrip HTML 查询搜索常用格式模版 &lt;form class=&...
如何在按钮上加红色数字 您可以使用Bootstrap的badge组件来在...
要让两个按钮左右排列,你可以使用 Bootstrap 的网格系统将它...
是的,可以将status设置为布尔类型,这样可以在前端使用复选...
前端工程师一般用的是Bootstrap的框架而不是样式,样式一般自...
起步导入:<linkrel="stylesheet"href="b...