如何获取表行id和该行的所有文本

时间:2014-05-12 12:51:08

标签: javascript jquery

我需要在单击打印按钮时获取表行ID和与表id相关联的所有文本: 这是我到目前为止: JS:

newContent += Hesto.Html.StartTR(item.CommonCable, 'lineInfoRow');
            newContent += Hesto.Html.CreateTD('<input type="button" value="Print" id="btnprint" onclick="SelectedRow()">', null);
            newContent += Hesto.Html.CreateTD(item.CommonCable, null, null);
            newContent += Hesto.Html.CreateTD(item.Wire, null, null);
            newContent += Hesto.Html.CreateTD(item.WireLength * 1000, null);
            newContent += Hesto.Html.CreateTD(item.TerminalA, null);
            newContent += Hesto.Html.CreateTD(item.SealA, null);
            newContent += Hesto.Html.CreateTD(item.TerminalB, null);
            newContent += Hesto.Html.CreateTD(item.SealB, null);
            newContent = Hesto.Html.EndTR(newContent);
        });

        $('#AlternativeReworkCablesList').html(newContent);
    }

HTML:

<table id="alternativeCableTable">
            <thead>
                 <tr>
                                    <th>Print</th>
                    <th>Common Cable</th>
                    <th>Wire Type</th>
                    <th>Wire Length</th>
                    <th>Terminal A</th>
                    <th>Seal A</th>
                    <th>Terminal B</th>
                    <th>Seal B</th>
                 </tr>
             </thead>
                <tbody id="AlternativeReworkCablesList">
             </tbody>
             <tfoot>
             </tfoot>
        </table>

JS功能:

function SelectedRow() {
        var row = $(this).parents('tr');
        var text = row.find('lineInfoRow').text();
        console.log(text);
}

这是图像: table image

1 个答案:

答案 0 :(得分:1)

试试这个:

  var tablid = $(this).parents('tr').attr('id');
  var rowtext = $(this).closest('tr').text();

你还没有在点击call.it中传递对象引用。它应该是onclick="SelectedRow(this)"

 newContent += Hesto.Html.CreateTD('<input type="button" value="Print" id="btnprint" onclick="SelectedRow(this)">', null);