Diferència entre revisions de la pàgina «Solució exercici3»
De wikiserver
(Es crea la pàgina amb «<!DOCTYPE HTML> <html> <head> <title></title> </head> <body> <script type="text/javascript"> <!-- var Nombre = prompt("Introduzca su nombre:", "Nombre"); var Apellidos...».) |
|||
Línia 1: | Línia 1: | ||
− | <!DOCTYPE HTML> | + | <source lang="java"> |
+ | !DOCTYPE HTML> | ||
<html> | <html> | ||
<head> | <head> | ||
Línia 17: | Línia 18: | ||
</body> | </body> | ||
</html> | </html> | ||
+ | |||
+ | </source> |
Revisió del 11:27, 17 set 2018
!DOCTYPE HTML>
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
<!--
var Nombre = prompt("Introduzca su nombre:", "Nombre");
var Apellidos = prompt("Introduzca sus apellidos:", "Apellidos");
if(confirm("¿Es usted " + Apellidos + ", " + Nombre + "?"))
alert("correcto")
else
alert("incorrecto");
//-->
</script>
</body>
</html>