This article shares the specific code of JavaScript to implement the countdown of sending SMS for your reference. The specific content is as follows Implementation ideas: 1. js gets the send button element object Code example:<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Send SMS</title> <style> .box { width: 360px; margin: 100px auto; } </style> </head> <body> <div class="box"> Mobile phone number: <input type="number"> <button>Send SMS</button> </div> <script> var btn = document.querySelector('button'); var time = 10; btn.addEventListener('click', function() { btn.disabled = true; var timer = setInterval(function() { if (time == 0) { // Clear the timer and restore the button clearInterval(timer); btn.disabled = false; btn.innerHTML = 'Send SMS'; time = 10; } else { btn.innerHTML = 'remaining' + time + 'seconds'; time--; } }, 1000); }); </script> </body> </html> Page effect: 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:
|
<<: Solve the problem of multiple listeners reported when starting tomcat in Idea
>>: How to migrate local mysql to server database
Join query A join query refers to a matching quer...
I recently discussed "advertising" with...
Table of contents cause reason Introduction to NP...
Table of contents A pitfall about fileReader File...
Recently, when upgrading the Zabbix database from...
React originated as an internal project at Facebo...
1. Create a folder to store nginx shell scripts /...
Table of contents Linux--File descriptor, file po...
Isolation of process address spaces is a notable ...
1. Download the virtual machine version 15.5.1 I ...
0. System requirements CPU I5-10400F or above Mem...
The utf8mb4 encoding is a superset of the utf8 en...
Table of contents 1. Preparation 2. Define the gl...
This article example shares the specific code for...
Subquery Classification Classification by returne...