Esto es un prueba de lo que quiero hacer
JavaScript
:
Código Javascript
:
Ver originalfunction CambiarDersus()
{
var vp;
var maximo;
var heroes;
maximo=document.forms['cambiar'].maximo.value;
if (isNaN(document.forms['cambiar'].amount.value))
{
document.forms['cambiar'].amount.value.focus();
return false;
}
if(document.forms['cambiar'].amount<=0)
{
alert("Error:\nIntroduzca una cantidad.");
document.forms['cambiar'].amount.value.focus();
return false;
}
vp=document.forms['cambiar'].amount.value;
heroes=vp * 2;
if(heroes>maximo * 2)
{
heroes=maximo * 2;
}
document.forms['cambiar'].heroes.value=heroes;
}
Formulario:
Código HTML:
Ver original<form name="cambiar" method="POST" action="" autocomplete="off"> <center>
<div style="max-width:250px; max-height:250px; background-color:#e7e7e7; text-align:center; border-radius:5px; -moz-border-radius:5px; -webkit-border-radius:5px; box-shadow: 0 0 6px #333; -moz-box-shadow: 0 0 6px #333; -webkit-box-shadow: 0 0 6px #333;"><br><br> Perderás:
<input style="max-width:40px; border-style:solid; border-width:1px; border-color:#999; text-align:right;" type="text" id="vpamount" name="amount" value="0" onKeyUp="javascript:CambiarDersus();" onFocus="if (this.value=='0') this.value='';"></input> <span><img src="wow/static/images/shop/votes.png" height="15" width="15" style=""></img></span><br> <input type="hidden" name="maximo" value="0"></input> Recibirás:
<input style="max-width:40px; background-color:transparent; border-style:none; text-align:right;" type="text" name="heroes" value="0" readonly></input> <span><img src="wow/static/images/shop/titanio.png" height="15" width="15" style=""></img></span><br><br><br> <input type="submit" name="Convertir" value="Cambiar"> </center>