Required effect: After clicking to send the verification code, the button is disabled and undisabled after 5 seconds. Disable button after clicking send Unban after 5 seconds and resend The code is as follows: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <input type="text"> <input type="button" value="Send"> <script src="js/jquery-1.12.4.min.js"></script> <script> // Get the element var $btn = $("input:button") // Add button click event $btn.click(function () { // Define a variable to store the time number var n = 5; // Make the button disabled // Replace the text content of the button $(this).prop("disabled",true).val(n + "s and then send again") //Change the countdown content every 1s//Use the timer to reduce the time every 1svar timer = setInterval(() => { n--; // The text content changes // The default value of this inside the timer is window $(this).val(n + "s after resending") // If the time reaches 0, stop the timer if (n <= 0) { clearInterval(timer) // After 5 seconds, you need to resume sending the text // Undisable the button $(this).val("Resend").prop("disabled",false) } },1000) }) </script> </body> </html> This is the end of this article about how to disable the send verification code control button using jQuery. For more information about disabling the jQuery control button, please search previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Docker installation tomcat dubbo-admin instance skills
>>: Detailed explanation of how to use join to optimize SQL in MySQL
This article introduces a tutorial about how to u...
As the Internet era becomes more mature, the deve...
Latest solution: -v /usr/share/zoneinfo/Asia/Shan...
Table of contents Preface 1. Life cycle in Vue2 I...
Table of contents Precautions Necessary condition...
Check the Python version python -V If it is below...
Remove the dotted box on the link Copy code The co...
1: Define a stored procedure to separate strings ...
Often you will encounter a style of <a> tag...
When changing the time zone under Linux, it is al...
MySQL's index types include normal index, uni...
Vertical table Vertical table splitting means spl...
1. Set the parent container to a table and the ch...
Docker is an open source project that provides an...
This article example shares the specific code of ...