Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

ValidityState.badInput

我们的志愿者还没有将这篇文章翻译为 中文 (简体)加入我们帮助完成翻译!

The read-only property ValidityState.badInput indicates if the user has provided input that the browser is unable to convert. For example, if you have a mail input element whose content does not have a '@'.

Example

<input type="mail" id="email">
var input = document.getElementById("email");
if (input.validity.badInput) {
  console.log("Bad input detected…");
} else {
  console.log("Content of input ok.");
}

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'ValidityState.badInput' in that specification.
Living Standard Live Standard
HTML5.1
The definition of 'ValidityState.badInput' in that specification.
Working Draft No change from the previous snapshot HTML5.
HTML5
The definition of 'ValidityState.badInput' in that specification.
Recommendation First snapshot of  WHATWG HTML Living Standard containing this interface.

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support ? 29 (29) ? ? ?
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support ? ? 29.0 (29) ? ? ?

See also

文档标签和贡献者

 此页面的贡献者: cvrebert, Jeremie, teoli
 最后编辑者: cvrebert,