मुझे अपनी तालिका में प्रत्येक कॉलम का विवरण निकालने की आवश्यकता है। उदाहरण के लिए, कॉलम "नाम / एनआर"।
- तालिका में कई पते हैं
- प्रत्येक पंक्ति के बहुत अंतिम कॉलम में एक बटन होता है जो उपयोगकर्ता को एक सूचीबद्ध पता चुनने देता है।
समस्या: मेरा कोड केवल पहले वाले <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>