获取没有特定css类的元素

时间:2014-05-20 06:42:22

标签: jquery

我有这样的函数,以获取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] + "'/>");

                });
            }
    }

1 个答案:

答案 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] + "'/>");
});