Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

343
Visualizações
send post with list of id from html table for rows with checkbox property select using jquery

I have this table that is generated dynamically

HTML code for table

HTML table

I want to POST the list of id numbers of rows with selected checkbox.

I was able to get td elements selected using

        $('form#submit').submit(function(event) {
            $('#record_id tr').filter(':has(:checkbox:checked)').find('td').each(function() {
                console.log(this);
            });
            return false;
        });

I don't know how to build the list of id to send in POST.

about 4 years ago · Santiago Trujillo
1 Respostas
Responde à pergunta

0

I include table class to record_id table and use the following jquery code

        $('form#submit').submit(function(event) {
            var values = [];
            $('table > tbody input[type="checkbox"]:checked').each(function() {
                values.push(this.name);
            });
            console.log(values);
            $.ajax({
                type: "POST",
                url: "/systemlog",
                // The key needs to match your method's input parameter (case-sensitive).
                data: JSON.stringify({ logs: values }),
                contentType: "application/json; charset=utf-8",
                dataType: "json"
            });
            return false;
        });

enter image description here

about 4 years ago · Santiago Trujillo Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda