Código HTML:
Ver original
<!doctype html> <html lang="es"> <head> <meta charset="UTF-8"> <link href="css/style.css" type="text/css" rel="stylesheet"/> <link href="css/jquery-ui.css" type="text/css" rel="stylesheet"/> <link href="css/datatables.css" type="text/css" rel="stylesheet"/> <script> </script> </head> <body> <form action ="respuesta.php" method="post"> <header> </header> <section> <table> <thead> <input type ="checkbox" name="chk_name" value="id_campo"> <input type="submit" > <tr> </thead> </table> </section> </form> </body> </html>
y este es mi código js
Código Javascript:
Ver original
var oTable; var giRedraw = false; $(document).ready(function() { $.ajax({ url: './include/boletinConsulta.php', type: 'post', data: { tag: 'getData'}, dataType: 'json', success: function (data) { if (data.success) { $.each(data, function (index, record) { if ($.isNumeric(index)) { var row = $("<tr />"); $("<td />").text(record.dependencia).appendTo(row); $("<td />").text(record.responsable).appendTo(row); $("<td />").text(record.contacto).appendTo(row); $("<td />").text(record.estado).appendTo(row); $("<td />").text(record.tipo).appendTo(row); row.appendTo("table"); } }) } $('table').dataTable({ "bJQueryUI": true, "sPaginationType": "full_numbers", }) } }); })
si trae los datos de la base de datos y todo pero no logro lo demás
espero me ayuden