我正在通过名为World Weather Online的服务获取温度
我正在尝试<span>
像这样将天气更新到我的内容中:(我的所有值都是正确的,当我打开我的页面时它不会改变值)
<div class="temperature">
<span>Washington, USA</span>
<span id=temp>Temperature</span>
</div>
<script type="text/javascript">
var uri = "http://api.worldweatheronline.com/free/v1/weather.ashx?q=washington&format=json&num_of_days=1&date=today&key=dfghjkiuytdfghjkj";
var temp = 0
$.get(uri, function(r,status) {
current_temp_C = r.data.current_condition[0].temp_C;
temp = r.data.current_condition[0].temp_C;
}, "jsonp")
$('#temp').text("hola " + temp)
</script>
我知道这可能不是我能做到的最好方法,但有什么想法吗?