html5 – 在Firefox中的html5 datepicker

前端之家收集整理的这篇文章主要介绍了html5 – 在Firefox中的html5 datepicker前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有什么办法可以设置在Firefox 5中启用firefox(版本21)中的日期戳。我不想使用基于jQuery的日期戳,因为javascript将被禁用在浏览器的网站将被使用。 datepicker适用于Chrome。

那么如果不支持html 5 datepicker,那么如何在没有jquery的情况下添加一个datepicker?

解决方法

jQuery UI有一个datepicker小部件,您可以有条件地加载浏览器没有内置的。捕获是,即使是 you only select the datepicker widget in a custom jQuery UI build,它仍然是一个重要的下载。

我最喜欢的解决方案是使用Modernizr附带的yepnope来有条件地加载jQuery UI CSS和JS文件,只有在datepicker需要的时候。通过结合optimized build of Modernizra datepicker-only jQuery UI build,它为您提供了所有可能的浏览器的最小的下载。

yepnope({ /* included with Modernizr */
  test : Modernizr.inputtypes.date,nope : {
    'css': '/path-to-your-css/jquery-ui-1.10.3.custom.min.css','js': '/path-to-your-js/jquery-ui-1.10.3.datepicker.min.js'
  },callback: { // executed once files are loaded
    'js': function() { $('input[type=date]').datepicker({dateFormat: "yy-mm-dd"}); } // default HTML5 format
  }
});
原文链接:https://www.f2er.com/html5/168942.html

猜你在找的HTML5相关文章