我正在尝试添加“average_estimated_submitted_chargesand”中的所有值
我就是这样做的。
通过发出 getJSON 请求并将它们存储在 div 中来获取所有值。然后尝试阅读每个并将它们相加。不工作。返回南。(向下滚动到小提琴底部以查看错误)
var html = '';
var sum = '';
var dataUrl = 'http://data.cms.gov/resource/sq7j-n2ta.json';
$.getJSON(dataUrl, function(data){
$.each(data, function(i){
html += '<div class="billedCost">'+ data[i].average_estimated_submitted_charges + '</div>';
});
$('.holder').append(html);
$('.billedCost').each(function(){
sum += +this.value;
});
$('.total').append(sum);
});
这是我的小提琴