Jump to content
Fórum Script Brasil
  • 0

Recuperar Todos Os Componentes De Um Tipo.


reolca

Question

Pessoal,

Tem como eu recuperar todos os componentes de um formulário via JavaScript?

Por exemplo, se eu quiser validar todos os texts de um form para ver se não tem nenhum vazio, eu tenho que testar um por um. Gostaria de saber se não tem como eu fazer algo do tipo:

for (var i = 0; i < form.length; i++)

if (form.TextElement.value == "")

alert('Erro');

No exemplo acima (totalmente fictício laugh.gif ), eu pego todos os componentes do tipo INPUT TYPE="Text" via um vetor do form. Tem como eu fazer alguma coisa parecida? Mas teria que ser só os text, sem incluir botões, radios, etc...

Abraços,

Reinaldo.

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
Guest Guest

tenta fazer assim

var text = document.getElementsByTagName('input').length;
for (var i=0;i<text.length;i++){
   if (text.type == 'input'){
        //Fazer validação
   }
}

Verifica se é isto que você precisa...

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