作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个顺序列表,如果选择(选中)元素 - 它会计算值并显示所选元素的文本。如何显示所选元素的文本并在未选中时将其删除? Link to code pen .
和 js 本身:
$(".price-of-package-element").change(function () {
var count = 0,
priceElement = $(".price-of-package-element");
for (var i = 0; priceElement[i]; ++i) {
if (priceElement[i].checked) {
var value = priceElement[i].value,
title = $(this).next().text();
count += Number(priceElement[i].value);
$('#text').append("<div>" + title + "</div>");
}
}
});
最佳答案
只需添加 $('#text').html('');
在附加新的复选框时,您会再次附加新的div。
使用下面的代码。
$(".price-of-package-element").change(function () {
var count = 0,
priceElement = $(".price-of-package-element");
$('#text').html('');
for (var i = 0; priceElement[i]; ++i) {
if (priceElement[i].checked) {
var value = priceElement[i].value,
title = $(this).next().text();
count += Number(priceElement[i].value);
$('#text').append("<div>" + title + "</div>");
}
}
});
关于jquery - 如果选中复选框,如何附加元素,如果未选中,如何将其删除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35669364/
我是一名优秀的程序员,十分优秀!