我收到文本区域和文本字段上的 inputmode 属性的验证错误。验证器告诉我此时元素输入上不允许使用属性输入模式,但HTML5 规范表明它是允许的。
这段代码实际上有什么问题,还是验证器有问题?
这是一个简单的案例,它会产生这种验证错误(两次),一种是电子邮件输入,另一种是文本区域。
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<form method="post" action="contactme.php">
<label class='pas block'>
Your E-Mail:<br/>
<input type='email' name='email' required inputmode='latin' placeholder='your e-mail here' />
</label>
<label class='pas block'>
Your Message:<br/>
<textarea name='message' required inputmode='latin' placeholder='and your message here!'></textarea>
</label>
</form>
</body>
</html>