Este método trim() en jQuery se usa para eliminar los espacios en blanco desde el principio y el final de una string
Sintaxis:
jQuery.trim( str )
Parámetros: este método acepta un solo parámetro que se menciona anteriormente y se describe a continuación:
- str: este parámetro es la string que se va a recortar.
Valor devuelto: Devuelve la string después de eliminar los espacios en blanco.
El siguiente ejemplo ilustra el uso del método trim() en jQuery:
Ejemplo 1: En este ejemplo, el método trim() elimina la tabulación y los espacios al principio y al final de la string.
html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | trim() method</title> <script src= "https://code.jquery.com/jquery-3.4.1.js"> </script> <style> div { color: blue; } </style> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksforGeeks </h1> <h3>JQuery | trim() method</h3> <pre id="bb"></pre> <script> $("#bb").html( $.trim(" A computer science portal for geeks ")); </script> </body> </html>
Producción:
Ejemplo 2: En este ejemplo, el método trim() elimina los espacios en blanco de varias líneas.
html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JQuery | trim() method</title> <script src= "https://code.jquery.com/jquery-3.4.1.js"> </script> <style> pre { color: green; } </style> </head> <body style="text-align:center;"> <h1 style="color: green"> GeeksforGeeks </h1> <h3>JQuery | trim() method</h3> <pre id="geeks"></pre> <pre id="geeks1"></pre> <script> var varr = "\nIt removes all newlines, \n spaces"+ " and \n tabs from the beginning and end of string.\n" var varr1 = " \n Whitespace in the middle"+ " of string are preserved\n" $("#geeks").html("<b>Original : <br></b>" + varr + varr1); $("#geeks1").html("<b>Trimmed : <br></b>" + $.trim(varr) + $.trim(varr1)); </script> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA