- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在开发一个购物车,当消费者选择某些选项时,它会自动计算总数。我目前被困在复选框上。我希望他们在检查后在小计内自动计算。正如您所看到的,它正在成功计算所有内容,直到您到达复选框。如果您能帮助我,我将不胜感激。
var removedItem,
sum = 0;
$(function(){
// calculate the values at the start
calculatePrices();
// Click to remove an item
$(document).on("click", "a.remove", function() {
removeItem.apply(this);
});
// Undo removal link click
$(document).on("click", ".removeAlert a", function(){
// insert it into the table
addItemBackIn();
//remove the removal alert message
hideRemoveAlert();
});
$(document).on("change", "input.quantity", function(){
var val = $(this).val(),
pricePer,
total
if ( val <= "0") {
removeItem.apply(this);
} else {
// reset the prices
sum = 0;
// get the price for the item
pricePer = $(this).parents("td").prev("td").text();
// set the pricePer to a nice, digestable number
pricePer = formatNum(pricePer);
// calculate the new total
total = parseFloat(val * pricePer).toFixed(2);
// set the total cell to the new price
$(this).parents("td").siblings(".itemTotal").text("$" + total);
// recalculate prices for all items
calculatePrices();
}
});
});
function removeItem() {
// store the html
removedItem = $(this).closest("tr").clone();
// fade out the item row
$(this).closest("tr").fadeOut(500, function() {
$(this).remove();
sum = 0;
calculatePrices();
});
// fade in the removed confirmation alert
$(".removeAlert").fadeIn();
// default to hide the removal alert after 5 sec
setTimeout(function(){
hideRemoveAlert();
}, 5000);
}
function hideRemoveAlert() {
$(".removeAlert").fadeOut(500);
}
function addItemBackIn() {
sum = 0;
$(removedItem).prependTo("table.items tbody").hide().fadeIn(500)
calculatePrices();
}
function updateSubTotal(){
$("table.items td.itemTotal").each(function(){
var value = $(this).text();
// set the pricePer to a nice, digestable number
value = formatNum(value);
sum += parseFloat(value);
$("table.pricing td.subtotal").text("$" + sum.toFixed(2));
});
}
function addTax() {
var tax = parseFloat(sum * 0.13).toFixed(2);
$("table.pricing td.tax").text("$" + tax);
}
function calculateTotal() {
var subtotal = $("table.pricing td.subtotal").text(),
tax = $("table.pricing td.tax").text(),
post = $("table.pricing td.post").text(),
total;
subtotal = formatNum(subtotal);
tax = formatNum(tax);
post = formatNum(post);
total = (subtotal + tax + post).toFixed(2);
$("table.pricing td.orderTotal").text("$" + total);
}
function calculatePrices() {
updateSubTotal();
addTax();
calculateTotal();
}
function formatNum(num) {
return parseFloat(num.replace(/[^0-9-.]/g, ''));
}
<html >
<head>
<meta charset="UTF-8">
<title>TITLE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/cartnormalize.css">
<link rel='stylesheet prefetch' href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css'>
<link rel="stylesheet" href="styles/cartstyle.css">
</head>
<body>
<div class="content">
<h1>Service Name</h1>
<p class="removeAlert">
Item has been removed. Made a mistake? <a href="#">Undo removal</a>
</p>
<table class="items">
<tbody>
<tr>
<td>
<p>
Amount
<br />
</p>
<p class="description">The minimum amount allowed is $160.00</p>
</td>
<td>$1.00</td>
<td>
<input type="number" class="quantity" value="160" min="160" />
<a href="#" class="remove">Remove</a>
</td>
<td class="itemTotal">$160.00</td>
</tr>
</tbody>
</table>
<Fieldset>
<legend>Extra features</legend>
<p><input type="checkbox" name="featured" value="59.99"/> Featured Project ($59.99)</p>
<p><input type="checkbox" name="featured" value="99.99"/> Private project ($99.99)</p>
</fieldset>
<div class="cost">
<h2>Order Overview</h2>
<table class="pricing">
<tbody>
<tr>
<td>Subtotal</td>
<td class="subtotal"></td>
</tr>
<tr>
<td>13% Fee</td>
<td class="tax"></td>
</tr>
<tr>
<td>Post Fee</td>
<td class="post">$99.99</td>
</tr>
<tr>
<td><strong>Total:</strong></td>
<td class="orderTotal"></td>
</tr>
</tbody>
</table>
<a class="cta" href="#">Checkout Now »</a>
</div>
</div> <!-- End Content -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
<script src="Scripts/Cart.js"></script>
</body>
</html>
最佳答案
在features
上添加了一个事件监听器,它将金额加起来。
var removedItem,
sum = 0;
$(function(){
// calculate the values at the start
calculatePrices();
// Click to remove an item
$(document).on("click", "a.remove", function() {
removeItem.apply(this);
});
// Undo removal link click
$(document).on("click", ".removeAlert a", function(){
// insert it into the table
addItemBackIn();
//remove the removal alert message
hideRemoveAlert();
});
$(document).on("change", "input.quantity", function(){
var val = $(this).val(),
pricePer,
total
if ( val <= "0") {
removeItem.apply(this);
} else {
// reset the prices
sum = 0;
// get the price for the item
pricePer = $(this).parents("td").prev("td").text();
// set the pricePer to a nice, digestable number
pricePer = formatNum(pricePer);
// calculate the new total
total = parseFloat(val * pricePer).toFixed(2);
// set the total cell to the new price
$(this).parents("td").siblings(".itemTotal").text("$" + total);
// recalculate prices for all items
calculatePrices();
}
});
});
function removeItem() {
// store the html
removedItem = $(this).closest("tr").clone();
// fade out the item row
$(this).closest("tr").fadeOut(500, function() {
$(this).remove();
sum = 0;
calculatePrices();
});
// fade in the removed confirmation alert
$(".removeAlert").fadeIn();
// default to hide the removal alert after 5 sec
setTimeout(function(){
hideRemoveAlert();
}, 5000);
}
function hideRemoveAlert() {
$(".removeAlert").fadeOut(500);
}
function addItemBackIn() {
sum = 0;
$(removedItem).prependTo("table.items tbody").hide().fadeIn(500)
calculatePrices();
}
function updateSubTotal(){
$("table.items td.itemTotal").each(function(){
var value = $(this).text();
// set the pricePer to a nice, digestable number
value = formatNum(value);
sum += parseFloat(value);
$("table.pricing td.subtotal").text("$" + sum.toFixed(2));
});
}
$('input:checkbox[name="featured"]').click(function(){
sum = 0;
calculatePrices();
});
function checkForFeatures(){
$('input:checkbox[name="featured"]').each(function(){
var feature = $(this);
if(feature.is(':checked')){
sum += parseFloat(formatNum(feature.val()));
}
});
}
function addTax() {
var tax = parseFloat(sum * 0.13).toFixed(2);
$("table.pricing td.tax").text("$" + tax);
}
function calculateTotal() {
var subtotal = $("table.pricing td.subtotal").text(),
tax = $("table.pricing td.tax").text(),
post = $("table.pricing td.post").text(),
total;
subtotal = formatNum(subtotal);
tax = formatNum(tax);
post = formatNum(post);
total = (subtotal + tax + post).toFixed(2);
$("table.pricing td.orderTotal").text("$" + total);
}
function calculatePrices() {
checkForFeatures();
updateSubTotal();
addTax();
calculateTotal();
}
function formatNum(num) {
return parseFloat(num.replace(/[^0-9-.]/g, ''));
}
<html >
<head>
<meta charset="UTF-8">
<title>TITLE</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/cartnormalize.css">
<link rel='stylesheet prefetch' href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css'>
<link rel="stylesheet" href="styles/cartstyle.css">
</head>
<body>
<div class="content">
<h1>Service Name</h1>
<p class="removeAlert">
Item has been removed. Made a mistake? <a href="#">Undo removal</a>
</p>
<table class="items">
<tbody>
<tr>
<td>
<p>
Amount
<br />
</p>
<p class="description">The minimum amount allowed is $160.00</p>
</td>
<td>$1.00</td>
<td>
<input type="number" class="quantity" value="160" min="160" />
<a href="#" class="remove">Remove</a>
</td>
<td class="itemTotal">$160.00</td>
</tr>
</tbody>
</table>
<Fieldset>
<legend>Extra features</legend>
<p><input type="checkbox" name="featured" value="59.99"/> Featured Project ($59.99)</p>
<p><input type="checkbox" name="featured" value="99.99"/> Private project ($99.99)</p>
</fieldset>
<div class="cost">
<h2>Order Overview</h2>
<table class="pricing">
<tbody>
<tr>
<td>Subtotal</td>
<td class="subtotal"></td>
</tr>
<tr>
<td>13% Fee</td>
<td class="tax"></td>
</tr>
<tr>
<td>Post Fee</td>
<td class="post">$99.99</td>
</tr>
<tr>
<td><strong>Total:</strong></td>
<td class="orderTotal"></td>
</tr>
</tbody>
</table>
<a class="cta" href="#">Checkout Now »</a>
</div>
</div> <!-- End Content -->
<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
<script src='http://code.jquery.com/ui/1.10.3/jquery-ui.js'></script>
<script src="Scripts/Cart.js"></script>
</body>
</html>
关于javascript - 计算复选框总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36363435/
+--------+-------+----------+-----------+ | Maker | Model | SeatType | NoOfSeats | +--------+------
如何使用 jQuery 计算 p 标签之间的字符数? 我尝试: DEMO html: 1 1 1 js: var tBytes = 0, tFiles = $('b').length; fo
在 MongoDB 上运行正常的“查找”查询时,我可以通过在返回的游标上运行“计数”来获得总结果计数(不考虑限制)。因此,即使我将结果集限制为 10(例如),我仍然可以知道结果总数为 53(再次,例如
在 100% 堆叠条形图中,如何让数据标签同时显示值和总百分比?示例:129 (60.3%) 当您将鼠标悬停在栏上时,它会显示在工具提示中,但在栏本身上不可见。 此处示例:https://docs.g
我在Kibana中的总和有问题。 我的用例是,我的每个服务器都会定期报告打开的 session 数。在Kibana中,我想可视化所有服务器上所有 session 的总数。但是,即使只有一台服务器联机且
我正在使用 jQuery 和 ASP.NET MVC 3 以及 razor View 引擎。 我有几个可以在其中输入数值的文本框。我有一个标签控件,其中包含由 jQuery 计算的文本框总数。 我有以
像这样的结果: 75 Ansari 5 10 88 Koodoo 4 0 90 Koodoo 14 0 83 Koodoo 5 0
关闭。这个问题需要details or clarity .它目前不接受答案。 想改进这个问题吗? 通过 editing this post 添加细节并澄清问题. 关闭 9 年前。 Improve t
我是 PHP 的初学者,我正在为我的网站编写一些代码。我想获得当时处于事件状态的 session 总数。我知道这是一项艰巨的任务,但有可能。我该怎么做? 我google了一下,有人说可以通过统计tem
1。问题陈述 我很难在正确的记录行中显示 COUNT() 的总数。 如何将 COUNT() 显示到正确的相应服务 2。背景 我想根据stage_id 和分解到project_name 显示员工负责的项
我整个下午都在尝试处理一个(或两个或三个)查询,以便获得三个表的所有子表的计数。看看我的设计: 用户表 id_user | name 1 | foo 2 | bar 获奖表 id_won | user
我有以下脚本。想要文件夹、子文件夹和文件的数量: Sub CountFiles(ByVal path1 As String) Dim fso As Object Dim subfolder As Ob
我对 c3.js 中的饼图有疑问。 如何在标题中添加饼图的总数? var title = new Array('data1.sql','data2.sql') var dtitle = new Arr
我在这方面玩得很开心。我正在尝试针对具有递归关系(分层)的表编写查询(使用 Oracle),并获取存储在树中每个节点及其下方的另一个表中的记录总数。另一个表只有与叶节点相关的记录。但是,我想获得树中每
有没有办法获取模块在任何时间点使用的绑定(bind)总数(通过模板的 {{ .. }}/ng-xxx="..." 、 $scope.$watch(...) 等)? 最佳答案 使用 document.g
我有一个非常简单的表格,因为我现在真的只是在玩 RoR,只是收集一些数据并将其插入数据库,没有什么令人兴奋的只是基本的 CRUD。但是,我想在表格的页脚中放置一个总和字段,但我在网上找不到任何接近的东
这个 mysql 查询给出了我的产品的销售数量(total 和total_staff),按一天中的天数和小时数分组。我想要每个产品的 total 和 total_staff 的总和(不按任何内容分组,
我正在尝试计算 For 循环中每个 user_name 赢得的总金额,并将其显示在 Amount Won: 之后。但是,当我运行下面的代码时,赢得金额后没有任何显示: - 它完全是空白的。我什至尝试将
我有 3 个表。产品价格、开票产品和订购产品的表格。我正在尝试创建一个连接这些的 View 。我想输出产品价格以及开票产品总数和订购产品总数。 产品价格 id season_id product
例如,我在另一个查询的 while 循环内的查询中有一个 mysql_num_rows 结果为 4,8,15,16,23,42。我的问题是如何计算 while 循环中的所有结果? (共 133 个)谢
我是一名优秀的程序员,十分优秀!