My Writings. My Thoughts.
Javascript: Apenas números na digitação
On » terça-feira, 22 de dezembro de 2009 //
In »
Javascript
Os únicos caracteres aceitos durante a digitação são números:
Segue a função javascript:
Segue a chamada no html:
Segue a função javascript:
<script language='JavaScript'>
function SomenteNumero(e){
var tecla=(window.event)?event.keyCode:e.which;
if((tecla > 47 && tecla < 58)) return true;
else{
if (tecla != 8) return false;
else return true;
}
}
</script>
Segue a chamada no html:
<html>
<head>
<title> Somente Números </title>
</head>
<body>
<input type='text' size='10' value='' onkeypress='return SomenteNumero(event)'>
</body>
</html>
No Response to "Javascript: Apenas números na digitação"
Leave A Reply