如何使用 Modernizr 输入类型=日期时间?
我为 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定您想要完成什么,但“输入属性”选项添加了对以下
属性的测试:
autocomplete
、autofocus< /code>、
列表
、占位符
、最大
、最小
、多个
、<代码>模式,必需
和步骤
。 -- 不确定这与元素有什么关系?
“输入类型”选项确实添加了对
元素的以下
type
的测试:search
、tel、
网址
、电子邮件
、日期时间
、日期
,月
,周
、时间
、本地日期时间
、数字
、范围
和颜色
。然而,从文档来看:
一般来说,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
, andstep
. -- Not sure what this has to do with<input type="datetime" ...>
elements?The "Input Types" option does adds tests for the following
type
s of<input>
elements:search
,tel
,url
,email
,datetime
,date
,month
,week
,time
,datetime-local
,number
,range
, andcolor
.However, from the documentation:
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.