您好我正在尝试从 ajax 调用更新 div span 文本,这是我的 html 结构:
<div id="23" class="message product error">
<strong>
<br>
<strong>Unique id Id:</strong>
<span class="uniqueId" style="color: #000; font-weight: bold;">job_201208311928_78749</span>
<br>
<strong>Job Status:</strong>
<span class="status" style="color: #000; font-weight: bold;">IN PROGRESS</span>
</div>
我正在尝试将状态更新IN PROGRESS
为SHIPPED
但是我的 jquery 没有做到这一点:
function update (item){
$('#' + item.id + "span.status").text(item.CurrentStatus);
}
Item.id
当我发出警报时,item.CurrentStatus
两者都有正确的值。