angularjs的datetime local在mozilla firefox中不支持



我在html页面中使用angularjs。在html页面中,我必须输入日期时间。所以我使用本地日期时间。它可以很好地使用chrome,但在mozilla中,它的混合文本字段。angular js或任何其他解决方案中是否有日期时间的替代方案?

//    Sample Code: 
    <div class="col-md-2 col-centered col-fixed">
                        <label for="endDate"
                            translate="release.form.endDate">endDate</label>
                    </div>
                    <div class="col-md-4 col-centered col-fixed">
                        <input type="date" class="form-control" id="endDate"
                            ng-model="endDate" >
                    </div>
*

旧web浏览器不支持的输入类型将表现为输入类型文本。

您可以使用引导程序日期时间选择器。

https://eonasdan.github.io/bootstrap-datetimepicker/

相关内容

  • 没有找到相关文章

最新更新