viernes, 22 de julio de 2016

[Fecha de publicación: 2016-07-21]-Semana-02

Evalucacion; primer indicador


<html>
<title>Ejercicio-semana-02-21/07/16</title>
<head></head>
<script type="text/javascript">



document.write('<table width="100%" border="1">')
for(i=1 ; i <=3 ; i++){
document.write('<tr>')
for(j=1; j <=3; j++){

document.write('<td>')
document.write('<input type="text" id="' + (i+ "_"+j) + '" value="">')
document.write('</td>')
}
document.write('</tr>');
}
document.write('</table>');




function buscar(){

fila = document.getElementById("fila").value;
columna = document.getElementById("columna").value;
texto = document.getElementById("texto").value;
document.getElementById(fila + "_" + columna).value = texto;


}

</script>

<body>
fila: <input type="text" id="fila"><br>
columna: <input type="text" id="columna"><br>
texto: <input type="text" id="texto"><br>
<input type="button" value="aceptar" onclick="buscar()">

</body>
</html>

No hay comentarios.:

Publicar un comentario