¿Cómo obtienes la longitud de una string en JQuery?

La tarea es obtener la longitud de una string con la ayuda de JQuery. Podemos encontrar la longitud de la string mediante la propiedad jQuery .length . La propiedad de longitud contiene la cantidad de elementos en el objeto jQuery. Por lo tanto, se puede usar para obtener o averiguar la cantidad de caracteres en una string.

Sintaxis:

$(selector).length

Ejemplo 1:

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <title>Find Length of a String Using jQuery</title>
    <script src="https://code.jquery.com/jquery-1.12.4.min.js">
  </script>
    
    <script type="text/javascript">
        $(document).ready(function() {
            $("button").click(function() {
                var myStr = $("textarea").val();
                if ($(this).hasClass("with-space")) {
                    var withSpace = myStr.length;
                    alert(withSpace);
                } else if ($(this).hasClass("without-space")) {
                    var withoutSpace = myStr.replace(/ /g, '').length;
                    alert(withoutSpace);
                }
            });
        });
    </script>
</head>
  
<body style="text-align:center;">
    <h1 style="color:green;"> 
        GeeksForGeeks 
    </h1>
    <h3>Enter Text and Click the Buttons</h3>
    <textarea rows="5" cols="60">
      How do you get the length of a string in JQuery?
  </textarea>
    <br>
    <button type="button" class="with-space">
      Length of string including white-spaces
  </button>
    <br>
    <br>
    <button type="button" class="without-space">
      Length of string without white-spaces
  </button>
</body>
  
</html>

Salida:
antes de hacer clic en el botón:


Ejemplo 2:

<!DOCTYPE html>
<html>
  
<head>
    <title>
      Find Length of a String Using jQuery
  </title>
    <meta charset="UTF-8">
    <meta name="viewport" 
          content="width=device-width,
                   initial-scale=1.0">
    <script src=
"https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js">
  </script>
    
    <script>
        $(function() {
            $('#geeks1').keyup(function() {
                var txtlen = $(this).val().length;
                var txtlennospace = $(this).val().replace(/\s+/g, '').length;
                $('#geeks1_space').text(txtlen);
                $('#geeks1_space_no_space').text(txtlennospace);
  
            });
        });
    </script>
  
</head>
  
<body style="text-align:center;">
    <h1 style="color:green;"> 
        GeeksForGeeks 
    </h1>
    <div style="padding-bottom: 10px;">JQuery - Realtime length</div>
    <div>
        <input style="padding: 7px;" 
               maxlength="60" 
               size="50" 
               type="text"
               id="geeks1" />
        <p>Length with space : 
          <span id="geeks1_space"></span></p>
        <p>Length without space : 
          <span id="geeks1_space_no_space"></span></p>
    </div>
</body>
  
</html>

Salida:
Antes de ingresar el texto:

Después de ingresar el texto:

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *