SoFunction
Updated on 2025-04-03

JS implements the function of sending SMS verification code "resend verification text messages after 59 seconds"

Countdown – countdown from 10 to 0, clicking the button will restore the countdown

<body>
  <!-- WilltextvalueSet the value to10,from10reciprocal -->
  <input type="text" value="10" >
  <input type="button" value="restart" >
</body>
<script>
  var oT = ("txt");
  var oB = ("btn");
  var timer;
  //Encapsulate a function that starts countdown  function start(){
    //Open the timer, and the value in the text box is reduced by 1 per second    timer = setInterval(function(){
      --;
      //Stop the timer when the value in the text box is 0      if(<=0){
        clearInterval(timer);
      }
    },1000)
  }
  //Encapsulate a function that clears the delay  function stop(){
    clearTimeout(timer);
  }
  //The behavior when the web page is loaded is as follows   = function(){
    //As long as the value in the text has not reached 0, it continues to be reduced by one per second    if(>0){
      start();
    //Once cleared, stop    }else{
      stop();
    }
  }
  //Behavior when clicking a button   = function(){
    // Set a clear timer here, otherwise the recount after interrupting the text countdown will accelerate, and may even decrease to a negative value    clearInterval(timer);
    //After clicking the button, no matter how much the value in the text is, it will become 10     = 10;
    //Repeat the behavior of the above function    if(>0){
      start();
    }else{
      stop();
    }
  }
</script>

Knowledge point expansion:

4-digit verification code with mixed numbers and letters

Whether you are in the app registration, login, or in the web registration, you will see the verification code; then how to implement this verification code? There are two ways to achieve this effect through js, and the following code is presented!

Method 1: This method is easy to understand. First, define an array, and put all the letters and values ​​in it; if there are 4 digits, cycle 4 times, each cycle produces a random result, and accumulate the results of each time and store them in the position you want to put.

var arr=['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z']
  //Generate 4-digit verification code  for(var i=0;i<4;i++){
    pos=parseInt(()*(-1));
    +=arr[pos];
  }
  // Verify that the verification code entered by the user is correct   = function () {
    if(!=){
      alert("Verification code input error");
    }
  }

Method 2: This method is also easy to understand. Generate a random character library, and then start randomizing the subscripts corresponding to the characters in the random library (str), and then accumulate the characters corresponding to the random subscripts to another string.

function randomStr(){
    // Generate library    var str = "";
    var str1 = "";
    for (var i = 0; i < 4; i++) {
      var a = random(0, 9);
      var b = (random(65, 90));
      var c = (random(97, 122));
      str1 = str1 + a + b + c;
    }
    // Start the real randomness    for (var i = 0; i < 4; i++) {
      str += str1[random(0,  - 1)]
    }
    return str;
  }
   = randomStr();
   = function () {
    if ( != ) {
      alert("Verification code input error");
    }
  }
  function random(max, min) {
    return (() * (max - min) + min);
  }

Both of the above methods can obtain a 4-bit verification code with random numerical letters. You can try to understand them and then click them. If there are other methods, it will be updated!

Summarize

The above is the "resend verification text message after 59 seconds" function introduced by the editor to you. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to everyone in time. Thank you very much for your support for my website!
If you think this article is helpful to you, please reprint it. Please indicate the source, thank you!