Jump to content
Fórum Script Brasil
  • 0

Validar combobox


MTavares

Question

Pessoal,

eu tenho uma validação em ajax do qual tudo funciona perfeitamente, porém preciso validar o combobox e não estou conseguindo. Alguém poderia me ajudar? Segue abaixo o código:

<script language="javascript">

$(function(){

$("#form").bind("submit", validar);});

/*** Executa a verificação*/

function validar(e){

// determina se o form pode ser submetido ou não

var canSubmit = true;

// acumula as mensagens de erro

var messages = "&nbsp; Favor preencher os campos obrigatórios";

messages += "<ul>";

// faz uma busca por todos elementos que especificam o atributo req=true

$("[req=true]").each(function(){if($(this).val().length < 1){

canSubmit = false;

messages += "<li>" + $(this).attr("label") + "</li>";

}});

messages += "</ul>";

// verifica se vai exibir as mensagens de erro

if(canSubmit == false)

$("#divError").html(messages).css("color", "red").fadeIn(300);return canSubmit;

}

</script>

<div id="divError" style="display:none; width:300px; height:250px; border:1px dashed #F00; margin:0 300px; position:absolute; overflow:auto"></div>

<select name="AlunoEscola" style="width:100px" label="Necessário escolher ao menos 1 aluno" req="true">

<option value="">Aluno?</option>

<option value="S">Sim</option>

<option value="N">Não</option>

</select>

Obrigado

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