3.3.3Niveau AA3.3 Input Assistance
Foutsuggestie
If an input error is automatically detected and suggestions for correction are known, then the suggestion is provided to the user, unless it would jeopardize the security or purpose of the content.
Wat het betekent
Foutsuggestie begrijpen | Hoe te voldoen aan Foutsuggestie (Niveau AA) Als een invoerfout automatisch ontdekt wordt en suggesties voor verbetering bekend zijn, dan worden de suggesties aan de gebruiker geleverd, tenzij dit de beveiliging of het doel van de content in gevaar zou brengen.
Failing example
<!-- Fails: error message says "invalid" without guidance -->
<input type="email" aria-invalid="true"
aria-describedby="email-error">
<p id="email-error">Invalid input.</p>How to fix it
<!-- Pass: error message explains what is wrong and how to fix it -->
<input type="email" aria-invalid="true"
aria-describedby="email-error">
<p id="email-error" role="alert">
Please enter a valid email address, for example [email protected].
</p>Hoe A11yRisk dit detecteert
A11yRisk detecteert dit criterium automatisch.
Scan uw site op deze overtreding →