JScript
function valida(qual,nome_Campo) {
if(isNaN(qual)) {
window.alert("Este campo aceita APENAS números!");
document.getElementById(nome_Campo).value = "";
document.getElementById(nome_Campo).focus();
}
}
HTML
<input size='15' name='peso' id='peso' onblur=valida(this.value,'peso'); >
OU Essa q não deixa digitar e bloqueia CTRL C e CTRL V
JScript
function SomenteNumero(e){
var tecla=(window.event)?event.keyCode:e.which;
if((tecla>47 && tecla<58)) return true;
else{
if (tecla==8 || tecla==0 || tecla==13) return true;
else return false;
}
}
HTML
<input size=10 type=text name="valor" onkeypress='return SomenteNumero(event)' value='' />
sexta-feira, 17 de abril de 2009
Assinar:
Postar comentários (Atom)
Linux bash file returns unexpected token `$'do\r''
open file in vi edit with vi filename.sh command; type in vi :set ff=unix command; save file with :wq It will save the file with unix...
-
Adicionar ♦ 10 dias a partir de hoje echo date('d/m/Y', strtotime("+10 days")); ♦ 10 dias a partir de uma data echo ...
-
JQuery - JavaScript and HTML at same page :: send.html <script> Dropzone.options.myDropzone= { url: "upload.php", ...
Nenhum comentário:
Postar um comentário