Jump to content
Fórum Script Brasil
  • 0

Problemas com função


castilho

Question

olá

estou começando com javascript

estou usando essa função para permitir apenas números no input

segue a função

function Apenas_Numeros(caracter)
{
  var nTecla = 0;
  if (document.all) {
          nTecla = caracter.keyCode;
  } else {
          nTecla = caracter.which;
  }
  if ((nTecla> 47 && nTecla <58)
  || nTecla == 8 || nTecla == 127
  || nTecla == 0 || nTecla == 9  // 0 == Tab
  || nTecla == 13) { // 13 == Enter
          return true;
  } else {
          return false;
  }
}
e uma para formatar o campo
function fone1(obj,prox) {
switch (obj.value.length) {
        case 1:
                obj.value = "(" + obj.value;
                break;
        case 3:
                obj.value = obj.value + ")";
                break;  
        case 8:
                obj.value = obj.value + "-";
                break;  
        case 13:
                prox.focus();
                break;
}
}
o input está assim
<input name="telefone" type="text" id="telefone" size="20" maxlength="13" onKeyPress="fone1(this,document.form.data);return Apenas_Numeros(event);">

preciso que o mesmo input tenha um número mínimo de caracteres e que caso esse número não seja alcançado exiba uma mensagem ao lado

mas não estou conseguindo

se alguém poder ajudar agradeço

Edited by fercosmig
add tags
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...