我想将更新的 javascript 数据附加到 2 个跨度标签,rescued
并且rescued2
,当它可用时。由于我要附加新数据,我首先需要先清空标签,这样它们就不会继续重新附加数据......
function updateHUD() {
$('#bottomDisplay').empty();
$('#rescued').append("Total Animals Rescued: " + rescuedTotal_Array.length);
$('#rescued2').append("Total Animals Rescued lol: " + rescuedTotal_Array.length);
}
<div id="bottomDisplay">
<ul>
<li>Total Animals Rescued: <span id="rescued"></span></li>
<li>Total Animals Rescued2: <span id="rescued2"></span></li>
</ul>
</div>
我想这样做清除,所以我不需要单独clear
每个span
......而是清除整个 div 块然后重新开始。相反,当我清除div
块时,它只会擦除内部的所有跨度。
为什么这是不可接受的?
另一方面,我想我可以跳过clearing
and appending
,然后设置文本...
$('#rescued').text(rescuedTotal_Array.length);
$('#rescued2').text(rescuedTotal_Array.length);