我正在尝试通过 javascript/api 将 Covid-19 病例添加到我的网站,但出现问题。按国家/地区查询工作正常,但查询“总计”不会返回任何结果。
所以我想统计来自世界各地以及第二排来自一个国家的“感染者”总数。
如果有人知道代码中需要更改哪些内容,请告诉我。
$(document).on('change','.corona-select', function() {
var city = $(this).val();
if (city == 'Kosovo') {
$('#c_confirmed').html();
$('#c_recovered').html();
$('#c_deaths').html();
}
else if(city == 'total') {
$('#c_confirmed').html();
$('#c_recovered').html();
$('#c_deaths').html();
}
else {
$.get( "https://covid19.mathdro.id/api/countries/" + city, function( data ) {
$('#c_confirmed').html(data.confirmed.value);
$('#c_recovered').html(data.recovered.value);
$('#c_deaths').html(data.deaths.value);
});
}
});
qq_花开花谢_0
jeck猫
慕少森
相关分类