A ver si te sirven estos ejemplos:
Código Javascript
:
Ver original<html>
<head>
<script>
function actualiza_total()
{
var cant = document.getElementById('cantidad').value;
var precio = document.getElementById('precio').value;
if(isNaN(cant) || isNaN(precio)) {
alert("Solo valores numericos por favor");
document.getElementById('cantidad').value = "";
document.getElementById('precio').value = "";
return;
}
document.getElementById('total').value = cant*precio;
}
</script>
</head>
<body>
<input type="text" id="cantidad">
<input type="text" id="precio">
<input type="button" value="multiplicar" onClick="actualiza_total()">
<input type="text" id="total">
</body>
</html>
Código Javascript
:
Ver original<html>
<head>
<script>
function actualiza_total()
{
var cant = document.getElementById('cantidad').value;
var precio = document.getElementById('precio').value;
if(isNaN(cant) || isNaN(precio)) {
alert("Solo valores numericos por favor");
document.getElementById('cantidad').value = "";
document.getElementById('precio').value = "";
return;
}
document.getElementById('total').value = cant*precio;
}
</script>
</head>
<body>
<input type="text" id="cantidad">
<input type="text" id="precio">
<input type="text" id="total" onfocus="actualiza_total()">
</body>
</html>
Un saludo