如何从函数A到functon B获取值,或者? 我的代码就像
var $quantities = $('input.PackingCharge');
$(".prdItems tr").toggle(function() {
var totalQuantity = 0;
$(this).attr('clickedItem', '1');
//Calculate the TotalValu
$quantities.each(function() {
var GAtrr = (this.parentNode.parentNode);
if (GAtrr.getAttribute('clickeditem') == '1') {
var quantity = parseFloat(this.value);
totalQuantity += quantity;
}
});
// Total Value i hav append to the div and show the Total Value
$('#materialsCast').html(parseFloat(totalQuantity).toFixed(2));
}, function() {
// when i click this function the value not showing
console.log(totalQuantity.toFixed(2) + 'After');
// Wht are the item cliked that i clike again the value need to subtration
$quantities.each(function() {
var GAtrr = (this.parentNode.parentNode);
if (GAtrr.getAttribute('clickeditem') == '1') {
var quantity = parseFloat(this.value);
totalQuantity -= quantity;
}
});
});
请在我们取消选择时帮助我减去所选项目。
答案 0 :(得分:1)
你可以通过每次获得点击的总数来简化它,如下所示:
$(".prdItems tr").click(function(){
$(this).toggleClass('clicked');
var totalQuantity = 0;
$('.prdItems tr.clicked input.PackingCharge').each(function() {
totalQuantity += parseFloat(this.value);
});
$('#materialsCast').html(parseFloat(totalQuantity).toFixed(2));
});
我们只是使用.toggleClass()
在每次点击时添加/删除clicked
类,而是使用同一个类在计算总数时选择“on”行,而不是自定义属性。这里的奖励是你现在可以定义一个CSS类来与它一起免费添加一些样式,如下所示:
.clicked { background-color: green; }