gpt4 book ai didi

javascript - jquery如何从html表格行获取数据

转载 作者:行者123 更新时间:2023-12-02 14:30:01 24 4
gpt4 key购买 nike

我有下表:

   <table cellspacing="0" cellpadding="0" id="product">
<tr>
<th>Name</th>
<th>Category</th>
<th>Price</th>
<th colspan="2">Nr products</th>
</tr>
<?php foreach ($productsInStock as $product) : ?>
<tr>
<td><?php echo $product->getName(); ?></td>
<td><?php echo $product->getCategory(); ?></td>
<td><?php echo $product->getPrice().ProductController::coin; ?></td>
<td><?php echo $product->getNrProducts(); ?></td>
<td><button type="submit" value="Delete" class="upload" onclick="deleteDataTable();">Delete</button></td>
<input type="hidden" name="hiddenfieldname" class="hidden" value="<?php echo $product->getId();?>">
</tr>
<?php endforeach; ?>
</table>

我需要每个隐藏字段的值,但我只得到第一个:

x = ('.hidden').val() // gives the first value

如何在每次点击删除按钮后获得不同的值

最佳答案

最简单的解决方案是将 ID 作为参数传递给 deleteDataTable() 函数。

<td><button type="submit" value="Delete" class="upload" onclick="deleteDataTable(<?php echo $product->getId();?>);">Delete</button></td>

关于javascript - jquery如何从html表格行获取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37920566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com