gpt4 book ai didi

javascript - 根据同一表行中输入框的最高值查找元素

转载 作者:行者123 更新时间:2023-12-03 07:15:13 24 4
gpt4 key购买 nike

我有一个包含三列的表格。

  1. 第 1 列有输入框。
  2. 第 2 列包含一个“转化”数字,该数字将其值与输入框(第 1 列)中的值相乘
  3. 结果在第3列输出。

它看起来像这样:

5    2   10
1 1 1
2 1 2
3 2 6

如何根据同一行中输入框的最高值获取第 3 列的值?

到目前为止我的代码:

HTML

<table border="1px">
<tbody id="mbtbody">
<tr>
<td><input class="weightinputclass" type="number" value="0"></td>
<td class="conversionclass">5</td>
<td class="totals"></td>
</tr>
<tr>
<td><input class="weightinputclass" type="number" value="0"></td>
<td class="conversionclass">1</td>
<td class="totals"></td></tr>
<tr>
<td><input class="weightinputclass" type="number" value="0"></td>
<td class="conversionclass">1</td>
<td class="totals"></td>
</tr>
</tbody>
</table>

jQuery

$("#btn").click(function(){
var rows = $("#mbtbody").children("tr");
var total = 0;
rows.each(function(idx, row) {
var $row = $(row);
total += parseInt($row.find('input.weightinputclass').val());
$("#totalweight").html(total);
});
})

$(document).on('input', '.weightinputclass', function () {
var $row = $(this).closest("tr");
var weight = $row.find("input.weightinputclass").val();
var conversion= $row.find(".conversionclass").html();
$row.find(".totals").text(weight*conversion);
})

fiddle : https://jsfiddle.net/rdawkins/9fyLqfgr/16/

最佳答案

这是我找到的解决方案:

Javascript

$("#btn").click(function(){
var rows = $("#mbtbody").children("tr");
var total = 0;
rows.each(function(idx, row) {
var $row = $(row);
total += parseInt($row.find('input.weightinputclass').val());
$("#totalweight").html(total);
});

var currentMax = 0;
var currentMaxEl;
$('.weightinputclass').each(function (idx, element) {
var elVal = parseInt($(element).val());

if(elVal > currentMax) {
currentMax = elVal;
currentMaxEl = $(element);
}
});
var maxWeight = currentMaxEl.parent().parent().children('.totals').first().html();
$('#highestinput').html(2000 - maxWeight);
})

$(document).on('input', '.weightinputclass', function () {

var $row = $(this).closest("tr");
var weight = $row.find("input.weightinputclass").val();
var conversion= $row.find(".conversionclass").html();
$row.find(".totals").text(weight*conversion);
});

fiddle

https://jsfiddle.net/9v6j8qub/2/

关于javascript - 根据同一表行中输入框的最高值查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36455906/

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