我的datapicker代码在firefox中不起作用

时间:2018-03-28 12:45:26

标签: php html

我的日期选择器代码在chrome中工作,但在mozilla firefox中无效。我该如何解决这个问题?

我调用了一个函数,并在模态框中描述了日期选择器,如何在chrome和firefox中使它正常工作。

我的代码在这里:(在mvc控制器中查看)

<input class='form-control' type='date' id='joining_date' name='status'></form></div>

2 个答案:

答案 0 :(得分:0)

不幸的是,Firefox不支持。为了能够在所有浏览器中使用日期类型,您可以使用modernizer进行检查,如果不支持,您可以回退使用javascript来显示datepickerr。

<script>
    $(function(){           
        if (!Modernizr.inputtypes.date) {
            $('input[type=date]').datepicker({
                  dateFormat : 'yy-mm-dd'
                }
             );
        }
    });
</script>

Link

答案 1 :(得分:0)

遗憾的是,它无法在Firefox上运行,并且没有好的/简单的参考来记住哪些html / css功能在哪些浏览器上工作/不起作用,它只需要练习。

幸运的是,有很多日期选择器可供选择。这个家伙很简单:

enter image description here

http://chrishulbert.github.io/datepicker/