Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en...

24
Mg. Christian Retamal P. 1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas

Transcript of Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en...

Page 1: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 1

PROGRAMACIÓN LADO CLIENTE

Christian Retamal PeñaMagíster © en Ingeniería Industrial y Sistemas

Page 2: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 2

Contenidos Programación Asincrónica con Java Scripts

Page 3: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 3

JAVA SCRIPTSJavaScript, al igual que Flash, Visual Basic Script, es una de las múltiples maneras que han surgido para extender las capacidades del lenguaje HTML (lenguaje para el diseño de páginas de Internet). Al ser la más sencilla, es por el momento la más extendida. JavaScript no es un lenguaje de programación propiamente dicho como C, C++, Delphi, etc. Es un lenguaje script orientado a documentos, como pueden ser los lenguajes de macros que tienen muchos procesadores de texto y planillas de cálculo.

JavaScript es un lenguaje interpretado que se embebe en una página web HTML. Un lenguaje interpretado significa que a las instrucciones las analiza y procesa el navegador en el momento que deben ser ejecutadas

Page 4: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 4

JAVA SCRIPTSEjemplo :

<html>

<head>

</head>

<body>

<script language="javascript">

document.write(‘mi primer ejemplo’);

</script>

</body>

</html>

Page 5: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 5

JAVA SCRIPTSEjercicio : escribir un programa que muestre su nombre y asignatura preferida (saltar una línea al imprimir lo solicitado)

<html>

<head>

<title>Ejercicio</title>

</head>

<body>

<script language="javascript">

document.write("Christian");

document.write("<br>");

document.write("Optimización");

</script>

</body>

</html>

Page 6: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 6

JAVA SCRIPTSVariables:

Una variable es un depósito donde hay un valor. Consta de un nombre y pertenece a un tipo (númerico, cadena de caracteres, etc.).

Tipos de variable:

Una variable puede almacenar:

Valores Enteros (100, 260, etc.)

Valores Reales (1.24, 2.90, 5.00, etc.)

Cadenas de caracteres ("Juan", "Compras", "Listado", etc.)

Valores lógicos (true,false)

Existen otros tipos de variables que veremos más adelante.

Page 7: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 7

JAVA SCRIPTSEjemplo:

<html>

<head>

</head>

<body>

<script language="JavaScript">

var nombre="Juan";

var edad=10;

document.write(nombre);

document.write("<br>");

document.write(edad);

</script>

</body>

</html>

Page 8: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 8

JAVA SCRIPTS

Ejercicio : Confeccionar una programa en JavaScript que defina e inicialice una variable real donde almacenar el sueldo de un trabajador y otra de tipo cadena de caracteres donde almacenaremos el nombre. Imprimir cada variable en una línea distinta en pantalla.

Page 9: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 9

JAVA SCRIPTSEntrada por Teclado:Para la entrada de datos por teclado tenemos la función prompt. Cada vez que necesitamos ingresar un dato con esta función, aparece una ventana donde cargamos el valor.

<html>

<head>

</head>

<body>

<script language="JavaScript">

var nombre;

var edad;

nombre=prompt('Ingrese su nombre:‘);

edad=prompt('Ingrese su edad:’);

document.write('Hola ');

document.write(nombre);

document.write(' asi que tienes ');

document.write(edad);

document.write(' años');

</script>

</body>

</html>

Page 10: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 10

JAVA SCRIPTS

Ejercicio :

Confeccionar un programa que permita cargar el nombre de un usuario y su mail por teclado. Mostrar posteriormente los datos en la página HTML.

Page 11: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 11

JAVA SCRIPTSEstructuras secuenciales: ejemplo<html>

<head>

<script language="JavaScript">

var valor1;

var valor2;

valor1=prompt('Ingrese primer número:','');

valor2=prompt('Ingrese segundo número','');

var suma=parseInt(valor1)+parseInt(valor2);

var producto=valor1*valor2;

document.write('La suma es ');

document.write(suma);

document.write('<br>');

document.write('El producto es ');

document.write(producto);

</script>

</head>

<body>

</body>

</html>

Page 12: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 12

JAVA SCRIPTS

Ejercicios:

Desarrollar un programa que pida el ingreso del precio de un artículo y la cantidad que lleva el cliente. Mostrar el valor de la venta

Page 13: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 13

JAVA SCRIPTSEstructuras Condicionales simples:<html>

<head>

</head>

<body>

<script language="javascript">

var nombre;

var nota;

nombre=prompt('Ingrese nombre:','');

nota=prompt('Ingrese su nota:','');

if (nota>=4)

{

document.write(nombre+' esta aprobado con un '+nota);

}

</script>

</body>

</html>

Operadores lógicos> Mayor>= mayor o igual< menor<= menor o igual != distinto == igual

Page 14: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 14

JAVA SCRIPTSEstructuras Condicionales Compuestas:

<script language="javascript">

var num1,num2;

num1=prompt('Ingrese el primer número:','');

num2=prompt('Ingrese el segundo número:','');

num1=parseInt(num1);

num2=parseInt(num2);

if (num1>num2)

{

document.write('el mayor es '+num1);

}

else

{

document.write('el mayor es '+num2);

}

</script>

Operadores lógicos> Mayor>= mayor o igual< menor<= menor o igual != distinto == igual && and|| or

Page 15: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 15

JAVA SCRIPTSEstructuras Condicionales Anidadas:

<script language="javascript">

var nota1,nota2,nota3;

nota1=prompt('Ingrese 1ra. nota:','');

nota2=prompt('Ingrese 2da. nota:','');

nota3=prompt('Ingrese 3ra. nota:','');

//Convertimos los 3 string en enteros

nota1=parseInt(nota1);

nota2=parseInt(nota2);

nota3=parseInt(nota3);

var pro;

pro=(nota1+nota2+nota3)/3;

if (pro>=7){ document.write(‘excelente');}else{ if (pro>=4) { document.write('regular'); } else { document.write('reprobado'); }}</script>

Page 16: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 16

JAVA SCRIPTSEjercicios

1.Se pide ingresar 3 notas y calcular el promedio final, imprimir el promedio y un mensaje que indique la situación “Aprobado” o “Reprobado”.

2.Ingrese 2 veces una clave, compárelas e imprima un mensaje si son “Distintas” o “Iguales”.

3.Realizar un programa que lea por teclado dos números, si el primero es mayor al segundo informar su suma y diferencia, en caso contrario informar el producto y la división del primero respecto al segundo.

4.Ingresar por teclado un número positivo de uno o dos dígitos (1..99) mostrar un mensaje indicando si el número tiene uno o dos dígitos

5.Se cargan por teclado tres números distintos. Mostrar por pantalla el mayor de ellos

6.Se ingresa por teclado un valor entero, mostrar un mensaje que indique si el número es positivo, cero o negativo.

7.Confeccionar un programa que permita cargar un número entero positivo de hasta tres cifras y muestre un mensaje indicando si tiene 1, 2, ó 3 cifras. Mostrar un mensaje de error si el número de cifras no es 1, 2 ó 3.

Page 17: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 17

JAVA SCRIPTSEjercicios

8.De un postulante a un empleo, que realizó un test de capacitación, se obtuvo la siguiente información: nombre del postulante, cantidad total de preguntas que se le realizaron y cantidad de preguntas que contestó correctamente. Se pide confeccionar un programa que lea los datos del postulante e informe el nivel del mismo según el porcentaje de respuestas correctas que ha obtenido, y sabiendo que:

Nivel superior: Porcentaje>=90%.Nivel medio: Porcentaje>=75% y <90%.Nivel regular: Porcentaje>=50% y <75%.Fuera de nivel: Porcentaje<50%.

Page 18: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 18

JAVA SCRIPTSSwitch<script language="javascript">

var valor;

valor=prompt('Ingrese un valor comprendido entre 1 y 5:','');

valor=parseInt(valor);

switch (valor) {

case 1: document.write('uno');

break;

case 2: document.write('dos');

break;

case 3: document.write('tres');

break;

case 4: document.write('cuatro');

break;

case 5: document.write('cinco');

break;

default:document.write('debe ingresar un valor comprendido entre 1 y 5.');

}

</script>

Page 19: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 19

JAVA SCRIPTSWhile

<script language="javascript">

var x;

x=1;

while (x<=100)

{

document.write(x);

document.write('<br>');

x=x+1;

}

</script>

Page 20: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 20

JAVA SCRIPTSDo While<script language="javascript">

var valor;

do {

valor=prompt('Ingrese un valor entre 0 y 999:','');

valor=parseInt(valor);

document.write('El valor '+valor+' tiene ');

if (valor<10)

{

document.write('Tiene 1 digitos');

}

else

{

if (valor<100)

{

document.write('Tiene 2 digitos');

}

else

{

document.write('Tiene 3 digitos');

}

}

document.write('<br>');

} while(valor!=0);

</script>

Page 21: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 21

JAVA SCRIPTSFor

<script language="javascript">

var i;

for(i=1;i<=10;i++)

{

document.write(i+" ");

}

</script>

Page 22: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 22

JAVA SCRIPTSFunciones

<html>

<head>

<title></title>

</head>

<body>

<script>

function mostrarmensaje()

{

document.write("hola");

}

mostrarmensaje()

</script>

</body>

</html>

Page 23: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 23

JAVA SCRIPTSFunciones con Parámetros

<script>

var numero = 1;

var cadena = " Hola ";

var logico = true;

function valores(num, cad, log)

{

document.write(num);

document.write(cad);

document.write(log);

}

valores(numero, cadena, logico);

</script>

Page 24: Mg. Christian Retamal P.1 PROGRAMACIÓN LADO CLIENTE Christian Retamal Peña Magíster © en Ingeniería Industrial y Sistemas.

Mg. Christian Retamal P. 24

JAVA SCRIPTSFunciones con Parámetros y retornos

<script>

var x=5;

var y=2;

function sumar(a, b)

{

var c=a+b;

return c;

}

var z = sumar(x,y);

document.write(z);

document.write("<br>");

document.write(sumar(x,y));

</script>