我想为从我的数据库生成的每一行(tr)设置一个行值。所以假设我正在生成下表:
while ($row = $database->fetch_array($result))
{
$i=1-$i;
$class = "row".$i;
echo "<tr class='{$class} productId' id='{$row['productId']}'>
<td > ". $row['category']."</td>
<td >" . $row['productNo']. "</td>
<td>" . $row['productName']. "</td>
<td class='edit'>" . intval($row['quantity']). "</td>
<td>" . $row['sfLf']. "</td>
<td>". $row['cost']. "</td>
<td>". $row['total']."</td>
</tr>";
}
在这里,我尝试通过 id 属性传递 productId 值,但不幸的是,当我尝试在以下脚本中检索时,所有行的 id 都保持不变:
$(".productId").click(function() {
$.ajax({
type: "POST",
url: "populateInventory.php",
data: "productId="+$(".productId").attr('id'),
success: function(msg){
$("#invHistoryTable").html(msg);
}
});
如何使用上面的 ajax 命令将正确的 productId 值传递给我的 php 页面?谢谢你