admin管理员组文章数量:1343373
How can I get the sum of HTML5 data attributes in jquery? Eg, when one and two are checked the value needs to be 15, when none are checked the value equals 0.
$('.price').html(parseInt($(this).attr('data-price')));
HTML:
<input class="checkbox" id="one" type="checkbox" checked data-link="111" data-price="10">one<br />
<input class="checkbox" id="two" type="checkbox" checked data-link="222" data-price="5">two<br />
<input class="checkbox" id="three" type="checkbox" checked data-link="333" data-price="2">three<br />
<a href="111,222,333">link</a>
<span class="price">17</span>
JavaScipt:
$('.checkbox').on("change", function() {
var links = [];//array for links
$('.checkbox').filter(":checked").each(function() {
links.push($(this).attr('data-link'));//get links
//sum of all price values of this into price
$('.price').html(parseInt($(this).attr('data-price')));
});
$("a").attr("href", links.join(",")); // change link
});
Fiddle
How can I get the sum of HTML5 data attributes in jquery? Eg, when one and two are checked the value needs to be 15, when none are checked the value equals 0.
$('.price').html(parseInt($(this).attr('data-price')));
HTML:
<input class="checkbox" id="one" type="checkbox" checked data-link="111" data-price="10">one<br />
<input class="checkbox" id="two" type="checkbox" checked data-link="222" data-price="5">two<br />
<input class="checkbox" id="three" type="checkbox" checked data-link="333" data-price="2">three<br />
<a href="111,222,333">link</a>
<span class="price">17</span>
JavaScipt:
$('.checkbox').on("change", function() {
var links = [];//array for links
$('.checkbox').filter(":checked").each(function() {
links.push($(this).attr('data-link'));//get links
//sum of all price values of this into price
$('.price').html(parseInt($(this).attr('data-price')));
});
$("a").attr("href", links.join(",")); // change link
});
Fiddle
Share Improve this question edited Apr 29, 2014 at 12:06 Cerbrus 73k19 gold badges136 silver badges150 bronze badges asked Apr 29, 2014 at 12:03 YunoworkYunowork 3451 gold badge6 silver badges15 bronze badges 1- jsfiddle/FBJ3S/3 – Satpal Commented Apr 29, 2014 at 12:07
5 Answers
Reset to default 8You need to amend your code so that you keep a running total between each iteration of the loop. Try this:
$('.checkbox').on("change", function () {
var links = []; //array for links
var totalPrice = 0;
$('.checkbox:checked').each(function () {
links.push($(this).data('link')); //get links
totalPrice += $(this).data('price');
});
$('.price').html(totalPrice);
$("a").attr("href", links.join(",")); // change link
});
Example fiddle
Note that it's also quicker to use data()
instead of attr('data-x')
Fiddle Demo
$('.checkbox').on("change", function () {
var links = [],
sum = 0; //set sum initially to 0
$('.checkbox').filter(":checked").each(function () {
links.push($(this).attr('data-link'));
//add prices of the checked check-boxes to sum
sum += +$(this).attr('data-price'); // or +$(this).data('price');
});
$('.price').html(sum);
$("a").attr("href", links.join(","));
});
Updated jsFiddle
I created new array for data-price
and then added all elements in it.
dataPrices.push($(this).attr('data-price'));//get links
for (var i = 0; i< dataPrices.length; i++) {
result += ary[i];
}
//sum of all price values of this into price
$('.price').html(result);
Try this
$('.checkbox').on("change", function() {
var links = [];//array for links
var tempsum=0;
$('.checkbox').filter(":checked").each(function() {
links.push($(this).attr('data-link'));//get links
//sum of all price values of this into price
tempsum = parseInt(tempsum) + parseInt($(this).attr('data-price'))
});
$('.price').html(tempsum);
$("a").attr("href", links.join(",")); // change link
});
DEMO
Check the DEMO
$('.checkbox').on("change", function() {
var links = [];//array for links
var price = 0;
$('.checkbox').each(function() {
links.push($(this).attr('data-link'));//get links
if($(this).is(':checked')){
price = price + parseInt($(this).attr('data-price'));
}
//sum of all price values of this into price
$('.price').html(price);
});
$("a").attr("href", links.join(",")); // change link
});
本文标签: javascriptSum of data attributesStack Overflow
版权声明:本文标题:javascript - Sum of data attributes - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743699527a2524077.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论