我需要<tr>
使用 remove() 删除渲染页面中的一行;通过定位<label>
名称。 请参阅下面的标记。
此表中还有其他<tr>
行需要保留。是否可以通过文本标签名称“网站”或“网站”来定位表格中的一行label for="url"
?
IE
jQuery(document).ready(function( $ ){
$("target the <tr> by label name Website or "url" ").remove();
});
HTML 标记:
<tr>
<th><label for="url">Website</label></th>
<td><input type="text" name="url" id="url" value="" class="regular-text code" /></td>
</tr>