我有这个由 php 循环生成的 HTML 表(包含多行)。我想删除a
标签td
中td
标签 ID 等于 1 或其他东西的所有标签。
<table>
<tr>
<td>ID: 1</td>
<td align="left" width='20%'>
<div class='tools'>
<a href='http://localhost/www/GestIEFP/index.php/admin/groups/index/delete/1' title='Remover Grupo' class="delete-row" ><span class='delete-icon'></span></a>
<a href='http://localhost/www/GestIEFP/index.php/admin/groups/index/edit/1' title='Editar Grupo'><span class='edit-icon'></span></a>
<div class='clear'></div>
</div>
</td>
</tr>
</table>
我正在尝试这样做:
$(function(){
$('table').find("td:contains('ID: 1')")
.each ( function () {
$('a').remove();
})
})
有什么解决办法吗?