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

use*_*285 0 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>
Run Code Online (Sandbox Code Playgroud)

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

Fel*_*ing 5

只是:

$('td.ms-descriptiontext.ms-inputformdescription').next('td').remove();
Run Code Online (Sandbox Code Playgroud)

参考:next,remove