This article example shares the specific code of JavaScript to implement password box verification information for your reference. The specific content is as follows <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <style> div { width: 600px; margin: 100px auto; } .message { display: inline-block; font-size: 12px; color: #999; background: url(./img/1.png) no-repeat left center; padding-left: 10px; } .wrong { color: red; background-image: url(img/2.png); } .right { color: green; background-image: url(img/3.png); } </style> </head> <body> <div class="register"> <input type="password" class="ipt"> <p class="message">Please enter a 6-16 digit password</p> </div> <script> //Get the element var ipt = document.querySelector('.ipt'); var message = document.querySelector('.message'); //Register event ipt.onblur = function() { //According to the length of the form valueif (this.value.length < 6 || this.value.length > 16) { message.className = 'message wrong'; message.innerHTML = 'The number of digits you entered is incorrect'; } else { message.className = 'message right'; message.innerHTML = 'Enter correctly'; } } </script> </body> </html> Operation Results The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of the deployment process of Docker Alibaba Cloud RocketMQ 4.5.1
>>: Example sharing of anchor tag usage in HTML
System environment: Redis version: 6.0.8 Docker v...
Table of contents environment: 1. Docker enables ...
Click here to return to the 123WORDPRESS.COM HTML ...
Three functions: 1. Automatic vertical centering o...
1. Complexity of front-end engineering If we are ...
Table of contents 1. Pre-analysis 1. Variable pre...
Preface In practice, we may encounter such a prob...
Table of contents How to start mysqld Method 1: m...
This article example shares the specific code of ...
Recently, I'm learning to use React with Thre...
Table of contents 1. Introduction to pid-file 2.S...
Preface Speaking of text search tools, everyone m...
Screen Introduction Screen is a free software dev...
Table of contents background Problem Description ...
This article shares the specific code for WeChat ...