<script>
	$(document).ready(function() {
		function updateWeather() {
			var url = "https://geoapi.qweather.com/v2/city/lookup?location=fuling&adm=chongqing&key=1271def7ae8e49008a6f794eb30f2d87";
			$.getJSON(url, function(data) {
				var cityId = data.location[0].id;
				var weatherUrl = "https://devapi.qweather.com/v7/weather/now?location=" + cityId + "&key=1271def7ae8e49008a6f794eb30f2d87";
				$.getJSON(weatherUrl, function(weatherData) {
					var weatherDesc = weatherData.now.text;
					var temp = weatherData.now.temp;
					var html = "涪陵区<span style='margin-left: 10px;'>" + weatherDesc + "</span><span style='margin-left: 10px;'>" + temp + "℃</span>";
					$("#weather").html(html);
				});
			});
		}
		// Update every 5 minutes
		setInterval(updateWeather, 300000);
		// Initial update
		updateWeather();
	});
</script
请修改以下JavaScript代码	script		$documentreadyfunction 			var url = httpsgeoapiqweathercomv2citylookuplocation=fuling&adm=chongqing&key=1271def7ae8e49008a6f794eb30f2d87;			$getJSONurl functiondata 				var c

原文地址: http://www.cveoy.top/t/topic/hv2n 著作权归作者所有。请勿转载和采集!

免费AI点我,无需注册和登录