miércoles, 20 de julio de 2016

[Fecha de publicación: 2016-07-14]-Semana-01

Explicación de la nueva metodología del periodo 3

Ademas se elaboro en clase el siguiente Ejercicio:
<html>
<head>
<title>ejercicio</title>
</head>
<script type="text/javascript">
//-----------------------------------------------------------------
function nameA(){

document.getElementById("rta").value = document.getElementById("uno").value
}
//-----------------------------------------------------------------
function nameB(){

document.getElementById("rta").value = document.getElementById("dos").value
}
//-----------------------------------------------------------------
function nameC(){

document.getElementById("rta").value = document.getElementById("tres").value
}
//-----------------------------------------------------------------
function nameD(){
document.getElementById("rta").value = document.getElementById("uno").value + " " +document.getElementById("dos").value+ " " + document.getElementById("tres").value+ " " + document.getElementById("cuatro").value
}
//-----------------------------------------------------------------
</script>
<body>
Uno: <input type="text" id="uno">&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="uno" onclick="nameA()"><br>
Dos: <input type="text" id="dos">&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="dos" onclick="nameB()"><br>
Tres: <input type="text" id="tres">&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="tres" onclick="nameC()"><br>
Cuatro: <input type="text" id="cuatro">&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" value="cuatro" onclick="nameD()"><br>
Resultado: <input type="text" id="rta">

</body>


</html>


No hay comentarios.:

Publicar un comentario