這可能對你們中的一些人很簡單,但我遇到了麻煩。我想獲得TD中具有複選框的TR中第一個TD的值。 提醒第n個孩子的CSS的代碼行是我選擇TD的最後一次嘗試。jquery如何在動態表中選擇當前TD的第n個孩子
$('.notdupe').live('click', function (e) {
//alert("indivNum=" + $(e.target).val() + "&SetValue=" + $(e.target).is(":checked"));
$.ajax({
type: "POST",
url: "cfc/basic.cfc?method=SetNotDupe",
data: "indivNum=" + $(e.target).val() + "&SetValue=" + $(e.target).is(":checked"),
error: function (xhr, textStatus, errorThrown) {
// show error alert(errorThrown);
}
});
alert($(e.target:nth-child(-10)).css);
});
<td class="dupegroup">#dupe_group_number#</td>
<td><input type="checkbox" name="UserIDList" value="#userid#" /></td>
<td><a href="#request.controlURL#individuals/?fa=viewIndiv" target="_blank">#userid</td>
<td>#lastname#</td>
<td>#firstname#</td>
<td>#nickname#</td>
<td>#companyname#</td>
<td>#address1#</td>
<td>#zipcode#</td>
<td>#state#</td>
<td>client</td>
<td align="center"><input class="notdupe" type="checkbox" name="indivID" value="#userid#" checked /></td>
耶!這做到了。 $ firstTD = $(this).parent()。siblings()。first() alert($ firstTD.text()); – user990016 2012-02-24 16:46:47