我在 html 页面中有一个数据表,我想从 tfoot 获取值,但有时我有输入按钮。所以,我感谢检查th
from tfoot 表是否包含输入按钮,然后跳过tr
,而不是获取值。我的 jQuery 代码不起作用,因为我认为,每一行 ( tr
) 中都有一个按钮。
我的数据表:
<tfoot>
<tr>
<th></th>
<th>Total</th>
<th>20 420</th>
<th>17 306</th>
<th>3 114</th>
<th>15.25</th>
</tr>
<tr>
<th align="left" colspan="10">
With :
<button type="button" class="btn btn-small"><i class=" icon-signal"></i> graph</button>
</th>
</tr>
</tfoot>
我的jQuery代码:
// Get table footer data
$("#myTable tfoot tr").map(function() {
footer = [];
if($(this).find('input[type="button"]').length != 0){
$(this).find('th').each(function() {
var text = $(this).text().trim();
if(text != "") footer.push(text);
});
footers.push(footer);
}
});