我在一个 asp.net 页面上玩 SimpleWeather jquery 插件,它工作正常。 https://github.com/monkeecreate/jquery.simpleWeather
我只有两个问题:
我得到了上午和下午的时间,有没有人知道如何将其修复为 24 小时。
如果我知道weather.code http://developer.yahoo.com/weather/#codes,那么我可以用我自己的名字来表示热、冰雹等吗?
$.getJSON(weatherUrl, function (data) { if (data !== null && data.query.results !== null) { $.each(data.query.results, function (i, result) { if (result .constructor.toString().indexOf("Array") !== -1) { result = result[0]; }
var currentDate = new Date(); var sunRise = new Date(currentDate.toDateString() + ' ' + result.astronomy.sunrise); var sunSet = new Date(currentDate.toDateString() + ' ' + result.astronomy.sunset); if (currentDate > sunRise && currentDate < sunSet) { var timeOfDay = 'd'; } else { var timeOfDay = 'n'; }