Jump to content
Fórum Script Brasil
  • 0

f.action


MTavares

Question

Olá pessoal....

tenho um código javascript de um projeto de um colega de profissão, do qual funciona perfeitamente, mas quando fui implantar em um outro projeto, o f.action não direciona para a outra página, mesmo a página ser existente e constar no diretório correto... veja abaixo:

function marcaTodos(obj){
    f = document.formExibeConteudo;
    
    if(obj.checked){
        for (i=0;i<f.elements.length;i++)
          if(f.elements[i].type == "checkbox") {
              f.elements[i].checked=1; 
          }
    } else {
        for (i=0;i<f.elements.length;i++)
              if(f.elements[i].type == "checkbox") {
                  f.elements[i].checked=0; 
              }
    }
}
function verificaSelecionados(area, acao) {
    f = document.formExibeConteudo;
    var total = 0;
    
    for (i=0;i<f.elements.length;i++)
          if(f.elements[i].type == "checkbox" && f.elements[i].checked) {
              total++;
          }

if(total>0 && area=='pacotes' ) {
switch(acao){
    case 'deletar': resposta = confirm("Deseja apagar o(s) pacotes(s) selecionado(s)?"); 
                    if(resposta) {f.action = 'deletarpacotes.php'; f.submit()};
                    break;
    case 'editar': if(total == 1) { f.action = 'alterarpacotes.php'; f.submit(); } else { alert('Você só pode editar uma coluna por vez!'); }
                    break;
}    
}
}


<form method="post" id="formExibeConteudo" name="formExibeConteudo">
   <td style="background-color:#E5E5E5; text-align:center; font-weight:bold"><input type="checkbox" name="NumPacotes" style="border:0px;" onclick="marcaTodos(this);"></td>
   <td><input type="checkbox" name="NumPacotes[]" value="10" style="border:0px;" id="checar"></td>
</form>

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