我试图获取具有特定类的TR中具有特定类的所有TD的HTML。 到目前为止,我有以下,但这不起作用。
有人可以告诉我这里的错误吗?
$('#queueTable').find('tr.trSel').each(function() {
html += "<tr>";
$(this).find('td.tdSel').each(function() {
html += $(this).html();
});
html += "</tr>";
});
答案 0 :(得分:4)
这将创建仅包含<tr>
单元格的内容的<td>
个对象,但不包含实际的<td>
代码。
尝试:
$('#queueTable').find('tr.trSel').each(function() {
html += "<tr>";
$(this).find('td.tdSel').each(function() {
html += '<td>' + $(this).html() + '</td>';
});
html += "</tr>";
});