VENTANAS EMERGENTES Y MODALES
22 de Febrero del 2017
Codigo: <a href= "onclick= javascript:window.open o window.close("url","_blank o _self","width, heigh ,menubar, top , left") </a>
- Una ventana emergente o una ventena popup es una ventana que se abre sin el concentimiento del usuario, esta ventana se abre en la misma ventana a la que el cliente ingreso.
Codigo: <a href= "onclick= javascript:window.open o window.close("url","_blank o _self","width, heigh ,menubar, top , left") </a>
- Una ventana modal,es la que aparece sin el permiso del usuario pero esta no permite ir a otro lugar hasta que el usuario acepte lo que dice en ella o la cierre.
Ejercicio;
<!DOCTYPE html>
<html>
<head>
<title>ejemplopopup</title>
<script>
var y = parseInt(prompt("Digite un numero del 1 al 4"));
if (y == 1){window.open("https://www.google.com", "_blank", "width=300 height=300 top=50 left=50");}
if (y == 2){window.open("http://www.vanguardia.com/" , "_self");}
if (y == 3){window.open("http://coldivinoamor.edu.co/" , "_blank");}
if (y == 4){window.open("http://www.eltiempo.com/" , "_self");}
</script>
</head>
<body>
</body>
</html>
<html>
<head>
<title>ejemplopopup</title>
<script>
var y = parseInt(prompt("Digite un numero del 1 al 4"));
if (y == 1){window.open("https://www.google.com", "_blank", "width=300 height=300 top=50 left=50");}
if (y == 2){window.open("http://www.vanguardia.com/" , "_self");}
if (y == 3){window.open("http://coldivinoamor.edu.co/" , "_blank");}
if (y == 4){window.open("http://www.eltiempo.com/" , "_self");}
</script>
</head>
<body>
</body>
</html>
Comentarios
Publicar un comentario