- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经在网络上搜索了大约一周的时间,以寻找(对我来说)我认为复杂的答案的解决方案。请注意,JS 和我并不是真正的好 friend 。
我有一个包含 4 个单元格的表格,需要计算,请参阅下面的代码:
<table>
<tr>
<td><input type="text" id="price1" name="price1"></td>
<td><input type="text" id="quantity1" name="quantity1"></td>
<td><input type="text" id="discount1" name="discount1"></td>
<td><input type="text" id="total1" name="total1"></td>
</tr>
</table>
基本上我需要的是一个动态解决方案,当我在第一个输入中输入价格示例 200、数量 3 和折扣 50(百分比)时,最后一个输入应该进行数学计算,乘以 200x3 并减去折扣( IF折扣)并将结果放入输入total1中。
不是,我的表格又名表单,用于为客户制作报价,我有一个 JS 脚本,可以添加行(这就是为什么 id 和 name 前面有 1,每行旁边添加一个数字。
与相同的脚本相比,应该计算总计,添加所有可用总计并将结果放入名为 grandtotal 的输入中。示例
<table>
<tr>
<td><input type="text" id="price1" name="price1"></td>
<td><input type="text" id="quantity1" name="quantity1"></td>
<td><input type="text" id="discount1" name="discount1"></td>
<td><input type="text" id="total1" name="total1"></td>
</tr>
<tr>
<td><input type="text" id="price2" name="price2"></td>
<td><input type="text" id="quantity2" name="quantity2"></td>
<td><input type="text" id="discount2" name="discount2"></td>
<td><input type="text" id="total2" name="total2"></td>
</tr>
<tr>
<td><input type="text" id="price3" name="price3"></td>
<td><input type="text" id="quantity3" name="quantity3"></td>
<td><input type="text" id="discount3" name="discount3"></td>
<td><input type="text" id="total3" name="total3"></td>
</tr>
<tr>
<td>grand total</td>
<td><select><option value="10">VAT 10%</option value="20é><option>VAT 20%</option></select>
<td>VAT = (shows only the taxes of the amount)</td>
<td>grand total = all totals + the vat</td>
</tr>
</table>
另外,因为这件事很复杂,我需要一个 js 脚本来计算选择选项,客户需要支付多少钱。如果我选择 20%,结果将显示在 <p></p>
中总额的 20% + 增值税。
两天前,我在 stackoverflow 上的 JSfiddle 中找到了一个表,但是我的电脑崩溃了,我一直在寻找,但没有任何运气。
如果有人可以通过向我展示工作代码的 jsfiddle 来提供帮助,我将不胜感激。
非常感谢您抽出时间。
最佳答案
对所有相似字段使用类,而不是编号 ID。然后就可以使用DOM遍历函数找到所有相关的输入,并进行计算。
$(".price, .quantity, .discount, #vat").change(function() {
var row = $(this).closest("tr");
var price = parseFloat($(".price", row).val());
var quantity = parseInt($(".quantity", row).val(), 10);
var discount = parseFloat($(".discount", row).val());
if (price && quantity) {
if (isNaN(discount)) {
discount = 0;
}
var total = price * quantity * (1 - discount/100);
$(".total", row).val(total.toFixed(2));
} else {
$(".total", row).val("");
}
var grand_total = 0;
$(".total").each(function() {
if (this.value != '') {
grand_total += parseFloat(this.value);
}
});
grand_total *= (1 + $("#vat").val()/100);
$("#grand_total").val(grand_total.toFixed(2));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr><th>Price</th><th>Quantity</th><th>Discount%</th><th>Total</th></tr>
<tr>
<td>
<input type="text" class="price" name="price1">
</td>
<td>
<input type="text" class="quantity" name="quantity1">
</td>
<td>
<input type="text" class="discount" name="discount1">
</td>
<td>
<input type="text" class="total" name="total1">
</td>
</tr>
<tr>
<td>
<input type="text" class="price" name="price2">
</td>
<td>
<input type="text" class="quantity" name="quantity2">
</td>
<td>
<input type="text" class="discount" name="discount2">
</td>
<td>
<input type="text" class="total" name="total2">
</td>
</tr>
<tr>
<td>
<input type="text" class="price" name="price3">
</td>
<td>
<input type="text" class="quantity" name="quantity3">
</td>
<td>
<input type="text" class="discount" name="discount3">
</td>
<td>
<input type="text" class="total" name="total3">
</td>
</tr>
<tr>
<td>grand total</td>
<td>
<select id="vat">
<option value="10">VAT 10%</option>
<option value="20">VAT 20%</option>
</select>
<td>VAT = (shows only the taxes of the amount)</td>
<td>grand total = all totals + the vat</td>
</tr>
<tr>
<td><input id="grand_total"></td>
</tr>
</table>
关于javascript - 使用 Javascript 进行不同的计算(加、减、按百分比减去...),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27669070/
我有两个列表,我想从 neg 中减去列表 pos 中元素的频率。所以: neg = [x for x in all[:800000]] pos = [x for x in all[800000:]]
我有两个列表,我想从 neg 中减去列表 pos 中元素的频率。所以: neg = [x for x in all[:800000]] pos = [x for x in all[800000:]]
我正在尝试减去 2 个标准逻辑向量并得到错误 p2 <= p1(11 downto 0)- idata(11 downto 0); Error (10327): VHDL error at sub.v
我将以下代码嵌入到类中。每当我运行 distToPoint 时,它都会给出错误“不支持的操作数类型 -: 'NoneType' 和 'float'” 我不知道为什么它会返回 NoneType 和如何让
这一直让我想知道, 假设我有这种情况: select (...long sub query..) - (...long sub query..) 我想把 - 放在条件中,这意味着有时它会是 - 有时是
我有两个 vector 。我需要从 vector1 中删除 vector2 中的内容。 [编辑:不清楚这是否意味着按照下面的链接或设置差异进行逐元素减法] 我使用 Visual Studio 2010
我有一张这样的 table : id product_property_id product_id amount type 1 1 145 10
我有两个 boolean 值列表 buy_machine 和 broken_machine。我想创建第三个列表 working_machines,它是购买的机器数量的总和并减去坏机器的数量。 我尝试了
我似乎可以解决这个问题。我有两个来自 sql 的访问者/国家/地区列表 us,us,uk,fr,uk,uk,uk 和 us,uk 我用 array_count_values() 将它们制成数组: Ar
我在 javascript 中减去时间时遇到了麻烦,尽管我已经谷歌搜索了 2 天但没有任何运气:( 我正在尝试为调查问卷计时。当用户开始调查问卷时,会记录时间戳。当用户完成/单击提交时,会记录新的时间
我正在尝试对 flex 搜索中索引的字段进行一些分析。 其中两个字段是“start_time”和“end_time”。我基本上希望将这两个字段的差异分组,即('end_time'-'start_tim
我有一个函数,它接收两个 BigDecimal 数字,即 bd1 和 bd2 作为参数。该函数应减去 bd1 - db2 并返回 bd1 和 bd2 的小数位数均为 2,结果的小数位数也应仅为 2但使
根据ldt_code中的ld源代码here。没有将dl_main传递给phdr的上下文,我对为什么通过减去虚拟地址来推断main_map的加载地址有些困惑。 我跟踪过的代码: 1124 static
我进行了多次重复测量的治疗,我想减去每次治疗的每个时间点的对照值。数据集的形状是这样的,有多年、物种和处理。 ID Year Species Treatment value 1 2010 x
我正在尝试查找一次旅行的矩形区域,可以在此处找到更多上下文 我在下面的代码中遇到的错误是: "Exception in thread "main" java.lang.ArrayIndexOutOfB
我一直在尝试使用 pandas dataframe 减去我读入 python 的列之间的日期和时间。我写的代码如下: Time = df['t'] - df['t'].shift(1) + df['t
I want to subtract all values in a[nn,...,0] by b[nn] while keeping the original structure of the ar
假设我有两个列表:List l1,和 Listl2 请帮助我如何在 2 个列表之间合并、减去和相交。谢谢。 注意:我使用的是 .NET 2.0,所以我不能使用 LINQ。谢谢。 最佳答案 以下是伪代码
这个问题不太可能对任何 future 的访客有帮助;它只与一个较小的地理区域、一个特定的时间点或一个非常狭窄的情况相关,通常不适用于全世界的互联网受众。如需帮助使此问题更广泛适用,visit the
我正在尝试运行以下代码: extern crate unicase; use unicase::UniCase; use std::collections::HashSet; fn main() {
我是一名优秀的程序员,十分优秀!