-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlertConfirm.php
More file actions
43 lines (33 loc) · 1.17 KB
/
AlertConfirm.php
File metadata and controls
43 lines (33 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!-- __________________________________________________________________________________
| |
| ELECCIÓN DE ALERT CON MENSAJE DE CONFIRMACIÓ O CANCELACIÓN |
| |
|__________________________________________________________________________________|
-->
<html>
<head>
<title>Confirmación de envío de formulario</title>
<meta charset="utf-8">
</head>
<body>
<p id="resul">Aquí se muestra la opción elegida: </p>
<form name=tuformulario action="">
<input type="text" name="cualquiercampo">
<input type=button onclick="pregunta()" value="Enviar">
</form>
<script language="JavaScript">
function pregunta()
{
var mensaje;
var opcion = confirm("Elección de personalidad");
if (opcion == true)
{
mensaje = "Mr. Malware Aceptar";
} else {
mensaje = "Mr. Qwerty Cancelar";
}
document.getElementById("resul").innerHTML = mensaje;
}
</script>
</body>
</html>