gpt4 book ai didi

javascript - html 表中可编辑字段的更改事件仅影响顶行计算字段

转载 作者:行者123 更新时间:2023-12-03 02:22:00 25 4
gpt4 key购买 nike

我有下表,其中包含可编辑字段(列)。

Table image

我对 sellprice 或 casecost 列字段进行的任何更改,我希望 GP 列字段随着用户键入或更改值而更新。我的代码如下。

function calculate() {

$('tr #item_q_sellprice').change(function calculate() {
//$('.productTable tr').on('change','#item_q_sellprice,#item_q_casecost',function calculate() {
// $("input[type=text]").change(function () {

//fields used for calculations
var newPrice = parseFloat($('tr #item_q_sellprice').val());
var casecost = parseFloat($('tr #item_q_casecost').val());
var casesize = parseFloat($('tr #item_q_casesize').val());
var vatrate = parseFloat($('tr #item_productVat').val());

//formulae
var netprice = newPrice / (1 + vatrate / 100);
var unitcost = casecost / casesize;
var profit = (newPrice / (vatrate / 100 + 1)) - unitcost;

var grossprofit = (profit / netprice) * 100

//alert("change price: " + price);
//Update GP field
$('#item_grossProfit').val(grossprofit.toFixed(1));

});

}

我的行 Html 如下

@foreach (var item in Model)
{
<tr>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.DisplayFor(modelItem => item.q_description)
</td>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.DisplayFor(modelItem => item.q_barcode)
</td>
<td>
€ @Html.TextBoxFor(modelItem => item.q_sellprice, "{0:0.00}", new { @class = "calc-list" })
</td>
<td>
€ @Html.TextBoxFor(modelItem => item.q_casecost, "{0:0.00}", new { @class = "calc-list" })
</td>
<td>
@Html.TextBoxFor(modelItem => item.grossProfit, new { @class = "calc-list" })
</td>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.DisplayFor(modelItem => item.productDepartment)
</td>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.TextBoxFor(modelItem => item.productVat, "{0:0.0}",new { @class = "calc-list", @readonly = "readonly" })
</td>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.DisplayFor(modelItem => item.q_stocklevel)
</td>
<td onclick="location.href = '@(Url.Action("Index", "Product", new { id = item.q_guid }))'">
@Html.TextBoxFor(modelItem => item.q_casesize, new { @class = "calc-list", @readonly = "readonly" })
</td>

</tr>
}

现在,这仅适用于顶行,而不适用于表格的其余行。我猜错误将出现在我的变量行上

var newPrice = parseFloat($('tr #item_q_sellprice').val()); 

如何才能使这些字段(sellprice/casecost)发生更改/更新的任何行也会更新相应的 GP 列?

最佳答案

您使用 foreach循环正在生成重复项 id无效 html 的属性以及脚本失败的原因。使用$('tr #item_q_sellprice').val()例如,只会返回第一个元素的值 id .

更重要的是,您使用 foreach循环意味着你的 View 永远不会正确绑定(bind)。相反,您需要使用 for循环或EditorTemplate - 引用Post an HTML Table to ADO.NET DataTable了解更多详情)。

为计算中需要的元素指定一个类名,然后使用相对选择器在同一容器(您的 <tr> )中查找关联元素。

View 应该是(使用 for 循环)

@for(int i = 0; i < Model.Count; i++)
{
<tr>
....
@Html.TextBoxFor(m => m[i].q_sellprice, "{0:0.00}", new { @class = "sell-price calc-list" })
@Html.TextBoxFor(m => m[i].q_casecost, "{0:0.00}", new { @class = "case-cost calc-list" })
....
</tr>
}

然后你的脚本就变成了

$('.sell-price, .case-cost').change(function calculate() {
// Get the containing table row
var row = $(this).closest('tr');
var newPrice = Number(row.find('.sell-price').val());
var casecost = Number(row.find('.case-cost').val());
....
// calculate results
row.find('.gross-profit').val(grossprofit.toFixed(1))
});

作为旁注,您应该检查这些值是否有效(例如,如果在文本框中输入的值无效,parseFloatNumber() 都将返回 NAN)

if (isNaN(newPrice) || isNaN(casecost) {
// its invalid and the calculation would fail

此外,自 grossProfit是一个计算值,不应将其生成为文本框。相反,使用(例如)<span>里面<td>显示计算出的值(并且应在服务器上以POST方法重新计算该值,以防止恶意用户更改请求)

关于javascript - html 表中可编辑字段的更改事件仅影响顶行计算字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49119187/

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