CSS form validation function implementation code

CSS form validation function implementation code

Rendering

principle

In the form element, there is a pattern attribute, which can customize regular expressions (such as mobile phone number, email address, ID card, etc.); the valid pseudo-class can match elements that pass the pattern validation; the invalid pseudo-class, on the contrary, can match elements that fail the pattern validation; so you can do whatever you want. The effect diagram above only makes some simple effects. For more effects and restrictions, you can use your imagination;

html

The layout is very simple. Input and button are sibling nodes. The required attribute means that the input content must be verified.

<section class="container">
  <input type="text" name="tel" placeholder="Please enter your mobile number" pattern="^1[3456789]\d{9}$" required><br>
  <input type="text" name="tel" placeholder="Please enter the verification code" pattern="\d{4}" required><br>
  <button type="submit"></button>

CSS

The scss preprocessor is used here

input {
  //Button style when validation passes&:valid {
    &~button {
      pointer-events: all;
      cursor: pointer;
      &::after {
        content: "Submit: +1:"
      }
    }
  }
  //Button style when validation fails&:invalid {
    &~button {
      pointer-events: none; // Remove click events to make the button unclickable&::after {
        content: "Unverified:unamused:"
      }
    }
  }
}

Summarize

The above is the implementation code of the CSS form validation function introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!
If you find this article helpful, please feel free to reprint it and please indicate the source. Thank you!

<<:  Key issues and solutions for web page access speed

>>:  Detailed explanation of the application of the four states of hyperconnection

Recommend

JS realizes the automatic playback effect of pictures

This article shares the specific code of JS to ac...

Comprehensive understanding of html.css overflow

Comprehensive understanding of html.css overflow ...

How to use Spark and Scala to analyze Apache access logs

Install First you need to install Java and Scala,...

How to import Chinese data into csv in Navicat for SQLite

This article shares with you the specific method ...

The whole process record of introducing Vant framework into WeChat applet

Preface Sometimes I feel that the native UI of We...

Web Design Tutorial (1): Steps and Overall Layout

<br /> Note: All texts, except those indicat...

How to add default time to a field in MySQL

Date type differences and uses MySQL has five dat...

A brief discussion on HTML ordered lists, unordered lists and definition lists

Ordered List XML/HTML CodeCopy content to clipboa...

Ten popular rules for interface design

<br />This is an article I collected a long ...

Summary of some thoughts on binlog optimization in MYSQL

question Question 1: How to solve the performance...

Top 10 Js Image Processing Libraries

Table of contents introduce 1. Pica 2. Lena.js 3....

jQuery achieves the effect of advertisement scrolling up and down

This article shares the specific code of jQuery t...