Advertisement
Guest User

Untitled

a guest
Dec 3rd, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. function keypressed(obj, e) {
  2. var tecla = (window.event) ? e.keyCode : e.which;
  3. var texto = document.getElementById("numeros").value
  4. var indexvir = texto.indexOf(",")
  5. var indexpon = texto.indexOf(".")
  6.  
  7. if (tecla == 8 || tecla == 0)
  8. return true;
  9. if (tecla != 44 && tecla != 46 && tecla < 48 || tecla > 57)
  10. return false;
  11. if (tecla == 44) { if (indexvir !== -1 || indexpon !== -1) { return false } }
  12. if (tecla == 46) { if (indexvir !== -1 || indexpon !== -1) { return false } }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement