Jump to content
Fórum Script Brasil
  • 0

Validar campos


MTavares

Question

Pessoal,

eu tenho um código que gera campos automaticamente através de um combobox. Só que preciso validar os campos e não estou conseguindo, Alguém poderia me ajudar?

Para não ficar muito poluído, vou colocar os trechos separadamente....

Segue abaixo o código:

primeira parte do código:

$(document).ready(function(){

            var ano = new Date();
            var anoAtual = ano.getFullYear();
        
        $('#dropdownaddI').change(function(){
            $('#dropdowndivI').html(""); 
            $loopcount = $(this).val();
            var titulo = '<br><div id="titulo_pacote">Adultos</div>';
            var subtitulo = '<div style="height:30px; line-height:30px">Nome da Pessoa / Data de Nascimento</div>';
            $('#dropdowndivI').append(titulo);
            $('#dropdowndivI').append(subtitulo);
Segunda parte do código aonde preciso de ajuda.
for (var i = 1; i <= $loopcount; i++)
            {
                
                 var input = '<br><strong>'+i+' - </strong> <input type="text" id="Pessoas[]" name="Pessoas[]" class="textbox2" value="" />'; 
                      input += '<select name="DiaNascimento[]" style="width:100px">';
                      input += '<option value"Selecione">Dia</option>';
                    for(dia = 1; dia <= 31; dia++){
                        if(dia <= 9){ dia = "0"+dia; }else{ dia = dia; }
                        input += '<option value"'+dia+'">'+dia+'</option>';
                    }
                    input += "</select>";
                    input += '<select name="MesNascimento[]" style="width:100px">';
                    input += '<option value"Selecione">Mes</option>';
                    for(mes = 1; mes <= 12; mes++){
                        if(mes <= 9){ mes = "0"+mes; }else{ mes = mes; }
                        input += '<option value"'+mes+'">'+mes+'</option>';
                    }
                    input += "</select>";
                    input += '<select name="AnoNascimento[]"  style="width:100px">';
                    input += '<option value"Selecione">Ano</option>';
                    for(ano = 1900; ano <= anoAtual; ano++){
                        input += '<option value"'+ano+'">'+ano+'</option>';
                    }
                    input += "</select><br>";                    
                $('#dropdowndivI').append(input);
            }
});

Abs.

Edited by MTavares
Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

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