使用jquery访问tr及其内容

时间:2009-07-17 05:24:24

标签: jquery html asp.net-mvc json

我正在使用C#应用程序进行MVC。我试图访问表中的整行,并使用jquery更改每个单元格中的值。

一旦json调用成功,我需要更改每个td中的值。

请为此提供建议

1 个答案:

答案 0 :(得分:3)

我们说你的桌子的'ID'是'myTable'。

$.getJSON('http://yourpageurl.com',
    function(data)
    {
        //Let's say you want to modify all the cells in the first row.
        $('#myTable tr:first td')
            .each(
                function()
                {
                    //'this' represens the cell in the first row.
                    $(this).html('changing cell value');
                }
            );

        //If you want to access all cells of all the rows, replace
        //#myTable tr:first td with
        //'#myTable td'    


    }
);

修改

如果您知道tr的'id',则可以替换

'#myTable tr:first td'选择器带'#<>'替换<>用你的TR id。