我正在使用项目列表,我需要在单击按钮时设置功能。该列表是从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) {
}
});
}
答案 0 :(得分:1)
问题是您获得".detalle"
的所有实例,例如var informacion = $(".detalle");
但是您需要定位单击的项目,您可以使用jquery完成此操作(无论如何都使用它)。
您可以在html中删除onclick="GetLocalesMain()"
,并在javascript中将GetLocalesMain
函数的内容移到以下jquery点击功能中:
$( ".detalle").click(function() {
// function contents goes here
});
然后将var informacion = $(".detalle");
替换为var informacion = $(this);
您现在应该获得点击的项目,然后获得正确的数据。