使用 jQuery 类似 Excel 的自动更新表格单元格

发布于 2024-08-06 07:20:18 字数 750 浏览 3 评论 0原文

我有一个 HTML 表结构,看起来类似于:

PRICE       QUANTITY    TOTAL
[5____]     [2____]     10 (TOTAL1=PRICE1*QUANTITY1)

价格和数量列中的值是可编辑的。这些是 HTML 表单字段。

总计列中的值不可编辑。相反,它们是左侧列的直接函数。

该表的 HTML 表示形式为:

<table id="some_id">
  <tr>
    <td><input type="text" name="price1" value="5" /></td>
    <td><input type="text" name="quantity1" value="2" /></td>
    <td><input type="readonly" name="total1" /></td>
  </tr>
</table>

使用 jQuery 我想使“total1”的值始终反映“price1”乘以“quantity1”的值。

问题:我知道有很多方法可以实现这一目标 - 但是使用 jQuery 实现这一目标的最干净、最简洁的方法是什么?

因为“自动更新/派生字段”应该是一个相当常见的 jQuery用例 我假设存在一些最佳实践方法来实现这一点。

I have an HTML table structure that looks something along the lines of:

PRICE       QUANTITY    TOTAL
[5____]     [2____]     10 (TOTAL1=PRICE1*QUANTITY1)

The values in the price and quantity column are editable. These are HTML form fields.

The values in the total column are not editable. Instead they are direct functions of the columns to the left.

The HTML representation of the table is:

<table id="some_id">
  <tr>
    <td><input type="text" name="price1" value="5" /></td>
    <td><input type="text" name="quantity1" value="2" /></td>
    <td><input type="readonly" name="total1" /></td>
  </tr>
</table>

Using jQuery I'd like to make it so that the value of "total1" always reflects the value of "price1" times "quantity1".

Question: I understand that there are numerous way to achieve this - but what would be the cleanest most concise way to do it using jQuery?

Since "auto-updating/derived fields" should be a quite common jQuery use-case I would assume that there exists some best practice method to achieve this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

懒猫 2024-08-13 07:20:18

jQuery 计算插件 (jquery.calculation.js) 解决了这个问题。

下面的代码展示了如何使用 jQuery Calculation 来解决这种特殊情况下的问题:

function recalc() {
  $("[name=total1]").calc(  
    "p * q",
    {   
      q: $("input[name=quantity1]"),
      p: $("input[name=price1]")
    },
    function (s) {
      // set number of decimals of resulting value to zero
      return s.toFixed(0);
    },
    function (t) {
      // this runs after the calculation has been completed
    }
  );
}
$("input[name=price1]").bind("keyup", recalc);
$("input[name=quantity1]").bind("keyup", recalc);
recalc();

The jQuery Calculation plugin (jquery.calculation.js) solves this exact problem.

The following code shows how to use jQuery Calculation to solve the problem in this particular case:

function recalc() {
  $("[name=total1]").calc(  
    "p * q",
    {   
      q: $("input[name=quantity1]"),
      p: $("input[name=price1]")
    },
    function (s) {
      // set number of decimals of resulting value to zero
      return s.toFixed(0);
    },
    function (t) {
      // this runs after the calculation has been completed
    }
  );
}
$("input[name=price1]").bind("keyup", recalc);
$("input[name=quantity1]").bind("keyup", recalc);
recalc();
漫雪独思 2024-08-13 07:20:18

这应该可以解决问题:

$('input[name^="price"], input[name^="quantity"').keyup(function() {
    $rowTds = $(this).closest('tr').children('td'); // get the row tds
    price = $rowTds.eq(0).children('input').val(); // get the price
    quantity = $rowTds.eq(1).children('input').val(); // get the quantity
    $rowTds.eq(2).children('input').val(price * quantity); // store the value in the total field
});

这可能可以缩短为 2 行(在函数内部),但我认为这可以保持可读性。

This should do the trick:

$('input[name^="price"], input[name^="quantity"').keyup(function() {
    $rowTds = $(this).closest('tr').children('td'); // get the row tds
    price = $rowTds.eq(0).children('input').val(); // get the price
    quantity = $rowTds.eq(1).children('input').val(); // get the quantity
    $rowTds.eq(2).children('input').val(price * quantity); // store the value in the total field
});

This could probably be shortened into 2 lines (inside the function), but I think this keeps it readable.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文