我有這樣的代碼:
$('#location').html(location);
$('#temperature').append(temperature);
$('#temperature').attr("value", temperature);
$('#weather').html(weather);
$('#summary').html(summary);
$('#hourly').html(hourly);
我想要做的描述是HTML格式的每一個字顯示。像這樣$('#hourly').html(hourly) + 'next 24 hours'
但是那樣做的時候不會顯示下24小時描述。
他的工作感謝:) –