ボタンクリックでテーブル行の内容を取得する


91

テーブルの各列の詳細を抽出する必要があります。たとえば、列「Name / Nr。」。

  • テーブルにはいくつかのアドレスが含まれています
  • 各行の最後の列には、ユーザーがリストされたアドレスを選択できるボタンがあります。

問題:私のコード<td>は、クラスを持つ最初のものだけを取得しますnr。これを機能させるにはどうすればよいですか?

jQueryビットは次のとおりです。

$(".use-address").click(function() {
    var id = $("#choose-address-table").find(".nr:first").text();
    $("#resultas").append(id); // Testing: append the contents of the td to a div
});

テーブル:

<table id="choose-address-table" class="ui-widget ui-widget-content">
    <thead>
        <tr class="ui-widget-header ">
            <th>Name/Nr.</th>
            <th>Street</th>
            <th>Town</th>
            <th>Postcode</th>
            <th>Country</th>
            <th>Options</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="nr"><span>50</span>
            </td>
            <td>Some Street 1</td>
            <td>Leeds</td>
            <td>L0 0XX</td>
            <td>United Kingdom</td>
            <td>
                <button type="button" class="use-address" />
            </td>
        </tr>
        <tr>
            <td class="nr">49</td>
            <td>Some Street 2</td>
            <td>Lancaster</td>
            <td>L0 0XX</td>
            <td>United Kingdom</td>
            <td>
                <button type="button" class="use-address" />
            </td>
        </tr>
    </tbody>
</table>

3
これは、テーブルセルのTD値を取得する方法に関するライブデモを含む完全なチュートリアルですcodepedia.info/jquery-get-table-cell-td-value-div
Satinder singh

回答:


265

演習の目的は、情報を含む行を見つけることです。そこに着くと、必要な情報を簡単に抽出できます。

回答

$(".use-address").click(function() {
    var $item = $(this).closest("tr")   // Finds the closest row <tr> 
                       .find(".nr")     // Gets a descendent with class="nr"
                       .text();         // Retrieves the text within <td>

    $("#resultas").append($item);       // Outputs the answer
});

デモを見る

それでは、そのような状況でよくある質問に焦点を当てましょう。

最も近い行を見つける方法は?

使用.closest()

var $row = $(this).closest("tr");

使用.parent()

.parent()メソッドを使用してDOMツリーを上に移動することもできます。これは、.prev()およびと一緒に使用されることがある代替手段にすぎません.next()

var $row = $(this).parent()             // Moves up from <button> to <td>
                  .parent();            // Moves up from <td> to <tr>

すべてのテーブルセル<td>値を取得する

これで、$rowテーブルセルテキストを出力したいと思います。

var $row = $(this).closest("tr"),       // Finds the closest row <tr> 
    $tds = $row.find("td");             // Finds all children <td> elements

$.each($tds, function() {               // Visits every single <td> element
    console.log($(this).text());        // Prints out the text within the <td>
});

デモを見る

特定の<td>値を取得する

前のものと同様ですが、子<td>要素のインデックスを指定できます。

var $row = $(this).closest("tr"),        // Finds the closest row <tr> 
    $tds = $row.find("td:nth-child(2)"); // Finds the 2nd <td> element

$.each($tds, function() {                // Visits every single <td> element
    console.log($(this).text());         // Prints out the text within the <td>
});

デモを見る

便利な方法

  • .closest() -セレクターに一致する最初の要素を取得します
  • .parent() -一致した要素の現在のセットの各要素の親を取得します
  • .parents() -一致した要素の現在のセット内の各要素の祖先を取得します
  • .children() -一致した要素のセット内の各要素の子を取得します
  • .siblings() -一致した要素のセット内の各要素の兄弟を取得します
  • .find() -一致した要素の現在のセット内の各要素の子孫を取得します
  • .next() -一致した要素のセット内の各要素の直後の兄弟を取得します
  • .prev() -一致した要素のセット内の各要素の直前の兄弟を取得します

ポップアップがあり、ページからテーブルにアクセスして行を削除したい場合はどうなりますか?いずれかの方法を試しましたが、
うまくいき

jsFiddleを準備できますか?
martynas 2014

1
ここでは、動的ID値の処理中に同様の問題が発生します。stackoverflow.com/questions/25772554/を

5
この答えがそれほど賛成されていない方法を知らない。優れたヒント!追加したかったのですが、特定の行を取得した後はいつでもこのような列値を取得できます$(this).closest( "tr")。find( "td:eq(2)")。html(); 2番目の列が表示されます。乾杯!
マティアス2015

1
私はまだ時々この答えを使います。本当に役に立ち、いくつかの小さな変更を加えるだけで、基本的にすべてのテーブルで機能します!
Mese 2016年

11

これを試して:

$(".use-address").click(function() {
   $(this).closest('tr').find('td').each(function() {
        var textval = $(this).text(); // this will be the text of each <td>
   });
});

これtrにより、現在クリックされているボタンに最も近い(DOMを通過する)ものが検索され、それぞれがループされtdます。値を使用して文字列/配列を作成することをお勧めします。

ここの例

ここで配列の例を使用して完全なアドレスを取得する


10

クリックされたボタンに関連する行を見つけるには、コードを変更する必要があります。これを試して:

$(".use-address").click(function() {
    var id = $(this).closest("tr").find(".nr").text();
    $("#resultas").append(id);
});

フィドルの例


4
function useAdress () { 
var id = $("#choose-address-table").find(".nr:first").text();
alert (id);
$("#resultas").append(id); // Testing: append the contents of the td to a div
};

次に、ボタンで:

onclick="useAdress()"

1
これには、質問のコードと同じ問題があります。どの行のボタンがクリックされたかに関係なく、常にテーブルの最初の行からIDを取得します。
dgvid 2013年

3

セレクター".nr:first""nr"、選択したテーブル要素内にクラスを持つ最初の要素と最初の要素のみを具体的に探します。代わりに呼び出す.find(".nr")と、クラスを持つテーブル内のすべての要素が取得されます"nr"。これらの要素をすべて取得したら、.eachメソッドを使用してそれらを反復処理できます。例えば:

$(".use-address").click(function() {
    $("#choose-address-table").find(".nr").each(function(i, nrElt) {
        var id = nrElt.text();
        $("#resultas").append("<p>" + id + "</p>"); // Testing: append the contents of the td to a div
    });
});

ただし、これにより、クリックされた行の要素だけでなく、テーブル内のすべてtd.nr要素が取得されます。クリックされたボタンを含む行に選択をさらに制限するには、次のように.closestメソッドを使用します。

$(".use-address").click(function() {
    $(this).closest("tr").find(".nr").each(function(i, nrElt) {
        var id = nrElt.text();
        $("#resultas").append("<p>" + id + "</p>"); // Testing: append the contents of the td to a div
    });
});

0

jqueryを使用して行内のIDを持つ要素を検索します

$(document).ready(function () {
$("button").click(function() {
    //find content of different elements inside a row.
    var nameTxt = $(this).closest('tr').find('.name').text();
    var emailTxt = $(this).closest('tr').find('.email').text();
    //assign above variables text1,text2 values to other elements.
    $("#name").val( nameTxt );
    $("#email").val( emailTxt );
    });
});

0
var values = [];
var count = 0;
$("#tblName").on("click", "tbody tr", function (event) {
   $(this).find("td").each(function () {
       values[count] = $(this).text();
       count++;
    });
});

これで、values配列には、その行のすべてのセル値が含まれ、values [0]のように使用できます。クリックした行の最初のセル値


0

デリゲートの簡単な例の完全なコードは次のとおりです

<!DOCTYPE html>
<html lang="en">
<head>
  <title>Bootstrap Example</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>

</head>
<body>

<div class="container">
  <h2>Striped Rows</h2>
  <p>The .table-striped class adds zebra-stripes to a table:</p>            
  <table class="table table-striped">
    <thead>
      <tr>
        <th>Firstname</th>
        <th>Lastname</th>
        <th>Email</th>

      </tr>
    </thead>
    <tbody>
      <tr>
        <td>John</td>
        <td>Doe</td>
        <td>john@example.com</td>
        <td>click</td>
      </tr>
      <tr>
        <td>Mary</td>
        <td>Moe</td>
        <td>mary@example.com</td>
        <td>click</td>
      </tr>
      <tr>
        <td>July</td>
        <td>Dooley</td>
        <td>july@example.com</td>
        <td>click</td>
      </tr>

    </tbody>
  </table>
  <script>
  $(document).ready(function(){
  $("div").delegate("table tbody tr td:nth-child(4)", "click", function(){
  var $row = $(this).closest("tr"),        // Finds the closest row <tr> 
    $tds = $row.find("td:nth-child(2)");
     $.each($tds, function() {
        console.log($(this).text());
        var x = $(this).text();
        alert(x);
    });
    });
});
  </script>
</div>

</body>
</html>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.