需要更新嵌套的div和span。
HTML:
<table id="item_table" data-role="table">
<thead>
<tr>
<th> </th>
<th scope="col" width="100px">Name</th>
<th scope="col" width="100px">Address</th>
<th scope="col" width="150px">Status</th>
</tr>
</thead>
<tbody>
<tr class="item" id="APPLE">
<td>APPLE</td>
<td width="100px"></td>
<td width="100px"></td>
<td width="50px">
<div id="item-status">
<img id="status-image" src=""></img>
<div>
<span></span>
</div>
</div>
</td>
</tr>
</tbody>
</table>
如何编写jquery代码,以便可以像这样更新行的最后一列。需要为id =&#34; item-status&#34;更新课程并添加img
<td width="50px">
<div id="item-status" class="not_found">
<img src="some_image.png"></img>
<div>
<span>
Not found
</span>
</div>
</div>
答案 0 :(得分:2)
这个怎么样:
$('#item-status').addClass('myNewClass');
$('#item-status > img').attr('src', 'imagepath');