使用 jQuery 类似 Excel 的自动更新表格单元格
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
jQuery 计算插件 (jquery.calculation.js) 解决了这个问题。
下面的代码展示了如何使用 jQuery Calculation 来解决这种特殊情况下的问题:
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:
这应该可以解决问题:
这可能可以缩短为 2 行(在函数内部),但我认为这可以保持可读性。
This should do the trick:
This could probably be shortened into 2 lines (inside the function), but I think this keeps it readable.