我有一组输入,将在同一表格中多次使用。每个小组彼此独立。
我正在尝试编写有效的jQuery,它将循环遍历每组输入并监视更改。每个input.total
字段都应使用其各自的值进行自动填充。每组的简单数学如下:
input.total = input.price * input.qty
<!-- Repeatable Section -->
<div class="payment-type">
<!-- Reveals the div below if checked -->
<input type="radio">
<label>Pay As You Go</label>
<div class="reveal-if-active">
<label>Price</label>
<input class="require-if-active price" type="text">
<label>Quantity</label>
<input class="require-if-active qty" type="text">
<!-- Total = Price * Qty -->
<label>Total</label>
<input type="number" class="total" value="" readonly>
</div>
</div>
答案 0 :(得分:0)
发布的答案似乎已被删除。他们的答案似乎不适用于多个override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! CostumeCellView
cell.textLabel?.text = titles[indexPath.row]
return cell
}
组。所以我修改它以满足我的需要。它似乎通过正确地乘以其兄弟字段来计算.payment-type
字段。
number.total