Para agregar una nueva línea al contenido del cuadro de alerta, usaremos \n barra invertida (n).
Ejemplo-1: Este ejemplo agrega \n entre las 2 líneas al texto del cuadro de alerta .
<!DOCTYPE HTML> <html> <head> <title> JavaScript | New line in alert box. </title> </head> <body style="text-align:center;" id="body"> <h1 style="color:green;"> GeeksForGeeks </h1> <p> Click on the button to pop alert box with added new line. </p> <button onclick="gfg_Run()"> click here </button> <script> var text = "This is line 1\nThis is line 2"; function gfg_Run() { alert(text); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Ejemplo-2: Este ejemplo agrega \n entre las 3 líneas al texto del cuadro de alerta .
<!DOCTYPE HTML> <html> <head> <title> JavaScript | New line in alert box. </title> </head> <body style="text-align:center;" id="body"> <h1 style="color:green;"> GeeksForGeeks </h1> <p> Click on the button to pop alert box with added new line. </p> <button onclick="gfg_Run()"> click here </button> <script> var text = "This is first line\nThis is "+ "middle line\nThis is last line"; function gfg_Run() { alert(text); } </script> </body> </html>
Producción:
- Antes de hacer clic en el botón:
- Después de hacer clic en el botón:
Publicación traducida automáticamente
Artículo escrito por PranchalKatiyar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA