В данный момент код Java предназначен для вычисления данных из чекбоксов, что нужно поменять чтобы он считал данные из радиокнопок?
Надеюсь смог кк-то объяснить
вот код
var Calculator = {
selectedGroups: [],
sum: 0,
isGroupSelected: function(groupId) {
return this.selectedGroups.indexOf(groupId) != -1;
},
addSelected: function(groupId, amount) {
if (!this.isGroupSelected(groupId)) {
this.changeSum(amount);
}
this.selectedGroups.push(groupId);
},
removeSelected: function(groupId, amount) {
if (!this.isGroupSelected(groupId)) {
return;
}
var groupIndex = this.selectedGroups.indexOf(groupId);
this.selectedGroups.splice(groupIndex, 1);
if (!this.isGroupSelected(groupId)) {
this.changeSum(-amount);
}
},
onSelect: function(groupId, amount, elem) {
if (elem.checked) {
this.addSelected(groupId, amount);
} else {
this.removeSelected(groupId, amount);
}
},
changeSum: function(amount) {
this.sum += amount;
this.showSum();
},
showSum: function() {
document.getElementById ('r').innerHTML = this.sum;
}
}
|