如何使用 Modernizr 输入类型=日期时间?

发布于 2024-12-01 08:40:21 字数 72 浏览 2 评论 0原文

我为 HTML 输入字段进行了自定义构建属性并将其包含在我的页面的 中,但这不起作用。我还需要做什么?

I made a custom build for HTML input fields & attributes and included that on my page in the <head> but that's not working. What else do I need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蓝海 2024-12-08 08:40:21

不确定您想要完成什么,但“输入属性”选项添加了对以下 属性的测试:autocompleteautofocus< /code>、列表占位符最大最小多个、<代码>模式, 必需步骤。 -- 不确定这与 元素有什么关系?

“输入类型”选项确实添加了对 元素的以下 type 的测试:searchtel、网址电子邮件日期时间日期, , 时间本地日期时间数字范围颜色

然而,从文档来看:

这些(输入)类型可以启用本机日期选择器、颜色选择器、URL
验证等。如果浏览器不支持给定类型,它
将呈现为文本字段。 Modernizr 无法检测到该日期
输入创建一个日期选择器,颜色输入创建一个颜色选择器,并且
依此类推 - 它将检测输入值是否已根据
规格。

一般来说,Modernizr 不会“做”任何事情(除了 HTML5 shim),它只是允许您检测浏览器上是否存在现代功能

Not sure what it is you are trying to accomplish, but the "Input Attributes" option adds tests for the following <input> attributes: autocomplete, autofocus, list, placeholder, max, min, multiple, pattern, required, and step. -- Not sure what this has to do with <input type="datetime" ...> elements?

The "Input Types" option does adds tests for the following types of <input> elements: search, tel, url, email, datetime, date, month, week, time, datetime-local, number, range, and color.

However, from the documentation:

These (input) types can enable native datepickers, colorpickers, URL
validation, and so on. If a browser doesn’t support a given type, it
will be rendered as a text field. Modernizr cannot detect that date
inputs create a datepicker, the color input create a colorpicker, and
so on—it will detect that the input values are sanitized based on the
spec.

In general, Modernizr doesn't "do" anything (besides the HTML5 shim), it just allows you to detect for the existence of modern features on the browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文