Nasıl bir form bir jQuery işlevi göndermek kullanarak bir dizi olarak bir PHP sayfası onay kutularını kontrol geçebilir?

0 Cevap php

Ben onay kutularını ve kullanıcı bir listesi vardır bir herhangi numarasını tıklayabilirsiniz sonra Gönder'i tıklatın. Onay kutularını listesi mySQL sorgu sonuçlarına göre üretilir -

echo("<form id=\"target\" action = \"#\">");
echo("<ul>");
while($row = mysql_fetch_array($result) {
  $the_value = $row['result_value'];
  $the_label = $row['result_label'];
  echo("<li><input type='checkbox' name=\"ids[]\" value='" . $the_value . "'/> " . $the_label . "</li>\n");
echo("</ul>");
echo("<input type=\"submit\" value =\"Copy\">");
echo("</form>");

Sonra göndermek için bir jQuery işleyicisi var

$('#target').submit(function() {
  alert(this.ids); // *See note below
  // I now want to call a PHP page, passing the array of ids so that this array can be used in a mySQL statement, then when complete notify the user it has succeeded
  return false;
});

*If I give the checkbox group the name ids (name=\"ids\") rather than ids[] then this alert shows "[object NodeList]"

How should I handle this? many thanks

0 Cevap