Hola,soy principiante y no se que estare haciendo mal..
mi codigo es el siguiente:
Código Javascript
:
Ver original<html>
<head>
<script language='javascript'>
function fsuma(){
n1=document.f1.num1.value;
n2=document.f1.num2.value;
res=document.f1.resul.value;
res=parseInt(n1)+parseInt(n2);
document.f1.resul.value=res;
}
</script>
</head>
<body>
<form name=f1 action="ejercicio1.html" method=POST>
<label name=lblnum1>Numero 1:</label><input type=text name=num1>
<label name=lblnum2>Numero 2:</label><input type=text name=num2>
<input type=button value=" + ",onclick="fsuma()">
<input type=text name=resul>
</form>
</body>
</html>
deberia de mostrarlme en resul el resultado de la suma pero no lo hace...si me podeis hechar un cable os lo agradeceria muuxo.
Salu2