Jump to content
Fórum Script Brasil
  • 0

Validacao CPFe CNPJ


claytonprog

Question

Pessoal estou precisando de ajuda!!

É o seguinte:

Tenho um form com um campo login nele é digitado o cpf ou cnpj, quero que ao clicar no botão enviar ele faça uma checagem se é cpf ou cpj.

Se for Cpf eu direciono para a area administrativa pessoa fisica

Se for Cnpj eu direciono para a area administrativa pessoa juridica

É isso que puder me ajudar agradeço!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

O legal seria colocar uma solução mais amigável. Veja abaixo:

no seu <head> </head> você coloca:

&lt;script>
function mostrar(valor){
   if(valor == 1){
    document.getElementById('CNPJ').style.display="none";
    document.getElementById('CPF').style.display="block";
}else if(valor == 2){
    document.getElementById('CPF').style.display="none";
    document.getElementById('CNPJ').style.display="block";
 }
}
</script>
No seu form você coloca dessa forma:
CNPJ: <input type="radio" name="TipoDocumento" value="CNPJ" onClick="mostrar(1)">
CPF: <input type="radio" name="TipoDocumento" value="CPF" onClick="mostrar(2)">

 <label id="CNPJ" for="cnpj" style="display:none">
<input type="text" name="CNPJ">
</label>
<label id="CPF" for="cpf" style="display:block">
<input type="text" name="CPF">
</label>

Dessa forma você estará dando ao seu usuário selecionar se vai ser CNPJ ou CPF, ao clicar me CNPJ o campo CNPJ aparecerá e vice-versa.

abs

Edited by MTavares
Link to comment
Share on other sites

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...