我正在处理项目列表,单击按钮时需要设置一个功能。该列表是从php脚本动态填充的,问题是当我单击按钮时,第一个条目是确定的(显示正确的信息),而其他条目则显示第一项的信息。

<div class="col-lg-12">
<table class="table">
 <thead>
  <th>
    Nombre Local
  </th>
  <th>
    Direccion
  </th>
  <th>
    Hora de cierre
  </th>
  <th>
    Informacion
  </th>
 </thead>
 <tbody>
 <?php foreach($list as $item){
  echo '<tr>';
  echo '<td>'.$item['name'].'</td>';
  echo '<td>'.$item['addr'].'</td>';
  echo '<td>'.$item['closing'].'</td>';
  echo '<td><button class="btn btn-data detalle" data-id="'.$item['id'].'" data-tipo="'.$item['tipo'].'" onclick="GetLocalesMain()"</td>';
  echo '</tr>';
  '};?>
 </tbody>
 </table>
</div>


JS

 function GetLocalesMain(){
  var informacion =  $(".detalle");
  var id = informacion.data('id');
  var tipo = informacion.data('tipo');

  console.log(id);
  console.log(tipo);
  $.ajax({
    url: '../functions/procesa.php?item=' + id + '&tipo=' + tipo,
    type: 'POST',
    dataType: 'json',
    data: {},
    complete: function (xhr, textStatus){
    },
    success: function(data, textStatus, xhr){
     console.log('json', data);
     $(data).each(function(a){
       muestraData(this);
     });
    },
    error: function(xhr, textStatus, errorThrown) {
    }
  });
}

最佳答案

问题是您正在获取".detalle"的所有实例,例如var informacion = $(".detalle");,但是您需要定位所单击的项目,因此可以使用jquery轻松完成此操作(因为无论如何都在使用它)。

您可以在html中删除onclick="GetLocalesMain()",然后在javascript中将GetLocalesMain函数的内容放入以下jquery click函数中:

$( ".detalle").click(function() {
  // function contents goes here
});


然后将var informacion = $(".detalle");替换为var informacion = $(this);

现在,您应该获得单击的项目以及随后的正确数据。

07-28 12:24