関数Aから関数Bへの値の取得方法は? 私のコードは、PLSのは、我々が選択解除され、選択した項目を差し引いに私を助けて関数から別の関数への値の取得方法
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;
}
});
});
のようなものです。
これは、それを取得することが多くなり、より良いフォーマットされた場合の答え – NimChimpsky