输入日期时的日期选择器引导程序错误(FireFox)

时间:2014-12-10 06:44:32

标签: javascript jquery twitter-bootstrap bootstrap-datepicker

我使用带有以下代码的bootstrap-datepicker:

$('#approved-date').datepicker({
    autoclose: true,
});

在Firefox浏览器上,当我输入" 12/10/2"之类的日期时,它会出错:

enter image description here

以这样的方式自动选择日期:

enter image description here

键入时如何关闭所选日期的自动化?

2 个答案:

答案 0 :(得分:0)

试试这段代码:

<input type="..." disabled="disabled" />

只需在输入字段中添加disabled="disabled"即可 或<input type="text" autocomplete="on | off">如果您不删除自动填充

答案 1 :(得分:0)