5

是否可以检测浏览器是否支持input type="date"with placeholder

4

1 回答 1

7

W3 验证器说占位符属性在日期输入上无效。验证此 HTML:

<!doctype html>
<title>date placeholder test</title>
<input type="date"  placeholder="enter a date">

给出错误:“ Attribute placeholder not allowed on element input at this point.” ...并说您可以使用属性“ placeholder when type is text, search, url, tel, e-mail, password, or number”。

此外,Chrome 不会显示日期输入的占位符,即使它认为 JS 中存在该属性(这大致是 Modernizr 检查属性的方式):

var test = document.createElement(element);
test.type = 'date';
alert('placeholder' in test);
于 2012-11-21T16:53:03.660 回答