jQuery删除有一个类的td之后的第一个td

时间:2011-10-25 10:04:30

标签: jquery

 <tr>
    <td class="ms-descriptiontext ms-inputformdescription">
 Accédez au document à télécharger.
   </td>
   <td><img width="8" height="1" alt="" src="/_layouts/images/blank.gif"></td>
 </tr>

如何删除带有类ms-descriptiontext的td之后的第一个td ms-inputformdescription

3 个答案:

答案 0 :(得分:5)

简单地:

$('td.ms-descriptiontext.ms-inputformdescription').next('td').remove();

参考nextremove

答案 1 :(得分:1)

$(".ms-descriptiontext").siblings("td").eq(1).remove();

答案 2 :(得分:1)

$("td.ms-descriptiontext.ms-inputformdescription + td").remove();