Jak uzyskać wartość komórki tabeli za pomocą jQuery?

213

Próbuję ustalić, jak uzyskać wartość komórki tabeli dla każdego wiersza za pomocą jQuery.

Mój stół wygląda następująco:

<table id="mytable">
  <tr>
    <th>Customer Id</th>
    <th>Result</th>
  </tr>
  <tr>
    <td>123</td>
    <td></td>
  </tr>
  <tr>
    <td>456</td>
    <td></td>
  </tr>
  <tr>
    <td>789</td>
    <td></td>
  </tr>
</table>

Zasadniczo chcę przejrzeć tabelę i uzyskać wartość Customer Idkolumny dla każdego wiersza.

W poniższym kodzie zorientowałem się, że muszę to zrobić, aby pętla przechodziła przez każdy wiersz, ale nie jestem pewien, jak uzyskać wartość pierwszej komórki w wierszu.

$('#mytable tr').each(function() {
    var cutomerId = 
}
Sean Taylor
źródło
4
Oto kompletny samouczek z pokazem
Satinder singh

Odpowiedzi:

306

Jeśli możesz, warto użyć atrybutu klasy w TD zawierającego identyfikator klienta, aby móc napisać:

$('#mytable tr').each(function() {
    var customerId = $(this).find(".customerIDCell").html();    
 });

Zasadniczo jest to to samo, co inne rozwiązania (być może dlatego, że skopiowałem i wkleiłem), ale ma tę zaletę, że nie musisz zmieniać struktury kodu, jeśli poruszasz się po kolumnach, a nawet umieszczasz identyfikator klienta w <span>, pod warunkiem, że zachujesz przy tym atrybut class.

Nawiasem mówiąc, myślę, że można to zrobić za pomocą jednego selektora:

$('#mytable .customerIDCell').each(function() {
  alert($(this).html());
});

Jeśli to ułatwi sprawę.

Jennifer
źródło
4
Powiedziałbym $ ('# mytable td.customerIDCell'). Each (function () {alert ($ (this) .html ());}); ale +1
Matt Briggs,
:-) dzięki - ale co, jeśli chcesz umieścić go w zakresie (być może źle sformatowałem zakres w mojej odpowiedzi!)
Jennifer
2
Używanie klasy na tr jest szczególnie pomocne, jeśli zdarza ci się mieć <td> w <tfoot> (lub używasz <td> zamiast <th>) i nie chcesz ich.
Frank Luke
$ ('# mytable tr'). each (function () {var customerId = $ (this) .find (". customerIDCell"). html ();});
Osama khodrog
ale jeśli chcę również pobrać tr html, to co możemy zrobić
programista
132
$('#mytable tr').each(function() {
    var customerId = $(this).find("td:first").html();    
});

To, co robisz, polega na iterowaniu wszystkich trs w tabeli, znajdowaniu pierwszego td w bieżącym trs w pętli i wyodrębnianiu jego wewnętrznego html.

Aby wybrać określoną komórkę, możesz odwołać się do nich za pomocą indeksu:

$('#mytable tr').each(function() {
    var customerId = $(this).find("td").eq(2).html();    
});

W powyższym kodzie będę pobierał wartość trzeciego wiersza (indeks jest zerowy, więc indeks pierwszej komórki wynosiłby 0)


Oto jak możesz to zrobić bez jQuery:

var table = document.getElementById('mytable'), 
    rows = table.getElementsByTagName('tr'),
    i, j, cells, customerId;

for (i = 0, j = rows.length; i < j; ++i) {
    cells = rows[i].getElementsByTagName('td');
    if (!cells.length) {
        continue;
    }
    customerId = cells[0].innerHTML;
}

W pobliżu

Andreas Grech
źródło
1
Dzięki, było to dla mnie bardziej przydatne, ponieważ nie mam kontroli nad znacznikami dokumentu, który chcę przeanalizować za pomocą jQuery. Możliwość użycia „td: first”, „td: last” itp. Była bardzo pomocna.
atomicules
1
eq (2) otrzyma wartość trzeciej kolumny, a nie trzeciego wiersza.
live-love
Co to jest eq (2) w twoim kodzie? Mam na myśli, że 2 jest indeksem którego td lub tr?
TechnicalKalsa
@Singh Element o indeksie 2 tdkolekcji zwrócony przez find("td")funkcję.
Andreas Grech,
Podoba mi się opcja 2 z indeksem jako ref, moje skrzypce tutaj
HattrickNZ
18

podejście mniej żartobliwe:

$('#mytable tr').each(function() {
    if (!this.rowIndex) return; // skip first row
    var customerId = this.cells[0].innerHTML;
});

można to oczywiście zmienić, aby działało z nie-pierwszymi komórkami.

Jimmy
źródło
8
$('#mytable tr').each(function() {
  // need this to skip the first row
  if ($(this).find("td:first").length > 0) {
    var cutomerId = $(this).find("td:first").html();
  }
});
Strelok
źródło
2
Nie ma potrzeby pomijania pierwszego wiersza, ponieważ zawiera on <th>, a nie <td>, więc ich dane nie zostaną wyodrębnione
Andreas Grech,
7

Spróbuj tego,

$(document).ready(function(){
$(".items").delegate("tr.classname", "click", function(data){
            alert(data.target.innerHTML);//this will show the inner html
    alert($(this).find('td:eq(0)').html());//this will alert the value in the 1st column.
    });
});
Nikhil Dinesh
źródło
1
drugiego elementu, nie pierwszego, eq zaczyna się od 0
Claudiu Creanga
4

Nie używasz identyfikatora dla tej kolumny? Powiedz to:

    <table width="300" border="1">
          <tr>
            <td>first</td>
          </tr>
          <tr>
            <td>second</td>
          </tr> 
          <tr>
            <td>blah blah</td>
            <td>blah blah</td>
            <td id="result">Where the result should occur</td>
          </tr>
    </table>


<script type="text/javascript">
        $('#result').html("The result is....");
</script>
MOH3n MOH
źródło
4

To działa

$(document).ready(function() {
    for (var row = 0; row < 3; row++) {
        for (var col = 0; col < 3; col++) {
            $("#tbl").children().children()[row].children[col].innerHTML = "H!";
        }
    }
});
David
źródło
2

Spróbuj tego :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>
<head>
    <title>Untitled</title>

<script type="text/javascript"><!--

function getVal(e) {
    var targ;
    if (!e) var e = window.event;
    if (e.target) targ = e.target;
    else if (e.srcElement) targ = e.srcElement;
    if (targ.nodeType == 3) // defeat Safari bug
        targ = targ.parentNode;

    alert(targ.innerHTML);
}

onload = function() {
    var t = document.getElementById("main").getElementsByTagName("td");
    for ( var i = 0; i < t.length; i++ )
        t[i].onclick = getVal;
}

</script>



<body>

<table id="main"><tr>
    <td>1</td>
    <td>2</td>
    <td>3</td>
    <td>4</td>
</tr><tr>
    <td>5</td>
    <td>6</td>
    <td>7</td>
    <td>8</td>
</tr><tr>
    <td>9</td>
    <td>10</td>
    <td>11</td>
    <td>12</td>
</tr></table>

</body>
</html>
mohammad
źródło
2
$(document).ready(function() {
     var customerId
     $("#mytable td").click(function() {
     alert($(this).html());
     });
 });
jithin
źródło
2

Działający przykład: http://jsfiddle.net/0sgLbynd/

<table>
<tr>
    <td>0</td>
    <td class="ms-vb2">1</td>
    <td class="ms-vb2">2</td>
    <td class="ms-vb2">3</td>
    <td class="ms-vb2">4</td>
    <td class="ms-vb2">5</td>
    <td class="ms-vb2">6</td>
</tr>
</table>


$(document).ready(function () {
//alert("sss");
$("td").each(function () {
    //alert($(this).html());
    $(this).html("aaaaaaa");
});
});
Gazmend Hoxha
źródło