30/07/2004, 10:26
|
| Moderador extraterrestre | | Fecha de Ingreso: diciembre-2001 Ubicación: Madrid
Mensajes: 6.987
Antigüedad: 23 años, 1 mes Puntos: 61 | |
Otra forma:
<html>
<head>
<script>
//pregunta("texto pregunta",responder en alert:true=sí, false=no)
var pepe;
function pregunta(textoPregunta,alerta){
pepe=prompt(textoPregunta,"","");
if(alerta){alert(pepe+"... que nombre más bonito!\nY vienes mucho por aquí?");}
else{document.getElementById("texto").innerHTML="M uy buenas, "+pepe+"!!<br><br>Te damos la bienvenida a esta página!"}
}
</script>
<title>Untitled</title>
</head>
<body onload="pregunta('Hola!\nCual es tu nombre?',true);pregunta('Pero '+pepe+', de verdad te llamas así?\nDime tu nombre!1',false);">
<div id="texto"></div>
</body>
</html>
__________________ Cómo escribir
No hay pregunta tonta, sino tonto que quiere seguir en la ignorancia.
Última edición por KarlanKas; 30/07/2004 a las 10:29 |