如何选择表行

时间:2015-07-02 07:27:21

标签: javascript jquery jquery-jtable

如何根据表头和第一列值选择表行。 你能帮我解决这个问题吗?使用JavaScript或者jQuery。 请找到附件图像enter image description here供您参考。

2 个答案:

答案 0 :(得分:-1)

   $(document).ready(function () {
        var json = {1: 'AOC', 2: 'BAs', 3: 'CTS:ELE', 4: 'COE:DEV'};
        $('table#xss tr').each(function () {
            var type = $(this).find('td:nth-child(2)').text();
            var res = type.split(";");
            var thisRow = $(this);
            $.each(json, function (key, val) {
                for (var i = 0; i < res.length; i++) {
                    if (val == res[i].trim()) {
                        var cc = parseInt(key) + 2;
                        thisRow.find('td:nth-child(' + cc + ')').html('****')
                    }
                }
//            
            });
        });
    });

答案 1 :(得分:-2)

更改第1行第5栏中的内容:

$("#box tr:nth-child(1) td:nth-child(5)").html("hehe");