Ver ❯
Herramientas SEO
Tamaño del resultado:
668 x 574
×
Cambiar Orientacion
Cambiar tema, Oscuro/Luz
<!doctype html> <html lang="es"> <head> <meta charset="utf-8"> <title>La ventana prompt</title> </head> <body> <script language="javascript" type="text/javascript"> <!-- function fu() { nombre=prompt("¿Como te llamas?","defecto"); if (nombre!=null){ alert("hola"+nombre);} } --> </script> <input type="button" value="pulsa" onClick="fu()"> </body> </html>