Home > Web Front-end > H5 Tutorial > body text

HTML5 implements form checkbox validation

青灯夜游
Release: 2018-11-09 18:16:57
Original
8448 people have browsed it

This article will introduce you to the check box verification of HTML5 forms. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

In the previous article [How does JavaScript implement check box verification of the form], we introduced the method of using js to implement the check box verification of the form. This article will introduce it to you. A way to validate checkboxes, using html5 to validate checkboxes.

1. HTML5 Validation Checkbox

Adding HTML5 validation to a checkbox is actually very simple. All you need to do is include the required attributes: required

Copy after login

Rendering:

HTML5 implements form checkbox validation

This tells the browser not to Allow form submission. Some (but not all) browsers will recognize and enforce this.

The advantage of HTML5 form validation is that it happens before we call JavaScript, showing instructions and pointing the user to the relevant element.

Text alert messages are completely browser generated and can even be automatically converted to different languages, something that is nearly impossible to do using JavaScript.

The advantage of HTML5 form validation is that it prompts the cause of the problem and does not require a clicked alert window. Moreover, the alert text can also be customized.

2. Custom HTML5 messages

We can use our own defined text messages to display on the browser, but this can only be done through JavaScript Finish. This requires checking the element's validity state yourself and explicitly setting (and clearing) the message:

Copy after login

The JavaScript block below the form assigns a custom error message to the checkbox when the page loads. We know that the checkbox is unchecked by default, so we need to tell the browser what message to display.

If the checkbox is unchecked and the Submit button is clicked, an alert similar to the example above will be displayed, but with our text instead of the default value.

HTML5 implements form checkbox validation

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

The above is the detailed content of HTML5 implements form checkbox validation. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!