これはおそらくあなたの一部にとっては簡単ですが、問題があります。私はチェックされているチェックボックスを持つTDのTRに最初のTDの値を取得したい。 nth-childの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()。兄弟()。first() alert($ firstTD.text()); – user990016