diff --git a/index.html b/index.html index a26f0dc..afeefe4 100644 --- a/index.html +++ b/index.html @@ -189,9 +189,9 @@
天气  加载失败  - *°C  - - *级 + + 次数 + 超限
diff --git a/js/main.js b/js/main.js index 0782451..1adf448 100644 --- a/js/main.js +++ b/js/main.js @@ -174,9 +174,9 @@ function getWeather() { .then(response => response.json()) .then(weather => { $('#wea_text').html(weather.now.text) - $('#tem_text').html(weather.now.temp) + $('#tem_text').html(weather.now.temp+"°C ") $('#win_text').html(weather.now.windDir) - $('#win_speed').html(weather.now.windScale) + $('#win_speed').html(weather.now.windScale+"级") }) }) })