我有这段代码:
$('#location').html(location);
$('#temperature').append(temperature);
$('#temperature').attr("value", temperature);
$('#weather').html(weather);
$('#summary').html(summary);
$('#hourly').html(hourly);
我想在html中为每个单词显示make。像这样$('#hourly').html(hourly) + 'next 24 hours'
但是如果那样做那样没有显示下一个24小时的描述。
答案 0 :(得分:0)
如果您想添加一些额外的文字,您需要使用相同的html
功能添加它:
$('#hourly').html(hourly + 'next 24 hours');
答案 1 :(得分:0)
好的,所以:$('#location').html(location);
查找名为“location”的变量,以便将其内容放在具有id="location"
属性的HTML元素中。
如果您这样输入:$('#location').html('location');
字符串“location”将插入带有“location”id的元素中。
您可以将正在执行的任意数量的变量,字符串和函数组合为参数:$('#location').html('Current Location: ' + location);
(假设“location”变量包含当前位置的数据)。
如果你想显示当前时间,有一篇关于Date()的帖子;可以帮助您做到这一点的功能:Current time formatting with Javascript