disculpas amigo, lo tenia hecho pero me comi el body al copiar y pegar
aca va completo
Código HTML:
Ver original<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <script type="text/javascript"> //<![CDATA[
// con esta función comprobás que sea un número
function es_numero(input){
return !isNaN(input)&&parseInt(input)==input;
}
//ahora verificas que sea no sea mayor que 5
function comprobar(campo,val_num){
var elvalor = document.getElementById(campo).value;
if(es_numero(elvalor)){
if(elvalor > val_num){
document.getElementById(campo).value= val_num;
alert("Número mayor que " +val_num + "\n\rsu número: " + elvalor);
document.getElementById(campo).style.backgroundColor = "red";
}else{
document.getElementById(campo).style.backgroundColor = "#FFF";
}
} else{
alert("Debe ingresar un número");
document.getElementById(campo).style.backgroundColor = "red";
}
}
//]]>
El campo debe de tener un valor y este ser menor ó igual a 5
<br /><input type="text" name="edad" id="edad" onblur="comprobar(this.id,5)" /><br /> El campo debe de tener un valor y este ser menor ó igual a 130
<br /><input type="text" name="edad" id="peso" onblur="comprobar(this.id,130)"/>
Saludos