我有这样的函数,以获取tbody标记内不属于第一个Tr的所有Tr元素。现在我想用s_gridview_pagerstyle css类获得没有tr的元素。请告诉我如何修改此块代码以便按预期运行。
Thankx!
if(arrayRequest.length>0) {
for (var i = 0; i < arrayRequest.length; i++) {
$('.s_dashboard_table').find('tbody').children(':not(:first):eq(' + i + ')'.each(function () {
var td = $(this).children().first();
td.append("<input type='checkbox' name='exportedItem' class='cbxItem' value='" + arrayRequest[i] + "'/>");
});
}
}
答案 0 :(得分:0)
你可以尝试
$("tr:not(.s_gridview_pagerstyle)")
<强>更新强>
$("table.s_dashboard_table tr:not(.s_gridview_pagerstyle)").each(function(key, value){
var td = $(this).children().first();
td.append("<input type='checkbox' name='exportedItem' class='cbxItem' value='" + arrayRequest[i] + "'/>");
});