Hola
gabriel em
Prueba este ejemplo:
Código PHP:
<html>
<head>
<script type="text/javascript">
function validar(obj) {
txt = obj.value;
if(parseInt(txt) != parseFloat(txt)) {
alert('Sólo números enteros');
obj.focus();
}
}
</script>
</head>
<body>
<input type="text" onblur = "validar(this)" />
</body>
</html>
Saludos,