gpt4 book ai didi

jquery - 使用jquery自动计算每个表行值

转载 作者:行者123 更新时间:2023-12-01 06:10:54 25 4
gpt4 key购买 nike

我的表中有这些数据

成本 邮费 利润 Paypal 售价
2.75         3           6            5            16.75
5.75         3           6            5            19.75
3.99         3           6            5            17.99

成本表中的值是从数据库中获取的,邮资利润中的值> 和 paypal 都是不变的。当我更新数据库中的成本值时,它现在将显示在表格中,并根据我更新的值进行自动计算,并在销售价格列中显示答案。我对如何在 jQuery 中实现客户端计算有点困惑。谁能帮我解决这个问题。任何帮助将更加感激。

这是我创建的代码

<html>
<head>
<script language="javascript" src="jquery.js"></script>

<script>
$(document).ready(function() {
//iterate through each textboxes and add keyup handler to trigger sum event
$(".txt").each(function()
{
$(this).keyup(function() {
calculateSellingPrice();
});
});
});

function calculateSellingPrice() {
var sellingprice = 0;
//iterate through each textboxes and add the values
$(".txt").each(function() {
//add only if the value is number
if (!isNaN(this.value) && this.value.length != 0) {
sellingprice += parseFloat(this.value);
$(this).css("background-color", "#FEFFB0");
}
else if (this.value.length != 0){
$(this).css("background-color", "red");
}
});
$("#sellingprice").html(sellingprice.toFixed(2));
}
</script>
</head>
<body>

<table border = "0">
<tr bgcolor="#cccccc">
<td><center>Selling Price</center></td>
<td><center>Cost</center></td>
<td><center>Postage</center></td>
<td><center>Profit</center></td>
<td><center>Paypal</center></td>
</tr>

<?php

$result = mysql_query("SELECT cost FROM table");
while ($myrow = mysql_fetch_row($result))
{
?>
<tr>
<td>
<?php echo "<input type='text' id='sellingprice' name='sellingprice' size='10' />"; ?>
</td>
<td>
<?php echo "<input class='txt' type='text' id='cost' name='cost' size='10' value='$myrow[1]' />"; ?>
</td>
<td>
<?php echo "<input class='txt' type='text' id='postage' name='postage' size='10' value='3' />"; ?>
</td>
<td>
<?php echo "<input class='txt' type='text' id='profit' name='profit' size='10' value='6' />"; ?>
</td>
<td>
<?php echo "<input class='txt' type='text' id='paypal' name='paypal' size='10' value='5' />"; ?>
</td>
</tr>
<?php
}
?>
</table>

</body>
</html>

我刚刚在互联网上找到了 jquery 代码,虽然我对 jquery 代码有所了解,但我有库存,无法继续。

最佳答案

您需要循环遍历并独立计算每一行。在您的示例中,jQuery 一次选择每个单元格输入,进行计算,然后更新所有“#salesprice”输入的显示。不过,不会有任何显示更改,因为“#lookingprice”需要通过 .val() 而不是 .html() 进行更新

这更接近您的需要。

$(document).ready(function(){
$('tr').each(function(){
var total = 0;
$(this).find('.txt:not(:first)').each(function(){
total += (+$(this).val());
});
$(this).find('.txt:first').val(total).css("background-color", "#FEFFB0");
});
});
  • 循环遍历每个 tr:$('tr').each(functi...
  • 设置或重置计数器:var Total = 0;
  • 循环遍历所有输入(不包括第一个总数):$(this).find('.txt:not(:first)')...
  • 设置新总计:$(this).find('.txt:first').val(total)...

关于jquery - 使用jquery自动计算每个表行值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8549701/

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