Jquery:从元素中获取下一个元素

发布于 2024-09-27 01:07:39 字数 446 浏览 2 评论 0原文

如何从 td rowspan=4 获取目标

不确定:

$("#fromTd").parent("tr").next().eq($("#fromTd").attr("rowspan")-1)


<table>
   <tr>...</tr>
   <tr>...</tr>
   <tr><td id="fromTd" rowspan="4"></td></tr>
   <tr>...</tr>
   <tr>...</tr>
   <tr>...</tr>
   <tr>...</tr> -> target (can be aleatory position..)
</table>

How can I get the target from the with td rowspan=4

Not sure about:

$("#fromTd").parent("tr").next().eq($("#fromTd").attr("rowspan")-1)


<table>
   <tr>...</tr>
   <tr>...</tr>
   <tr><td id="fromTd" rowspan="4"></td></tr>
   <tr>...</tr>
   <tr>...</tr>
   <tr>...</tr>
   <tr>...</tr> -> target (can be aleatory position..)
</table>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗地喜欢 2024-10-04 01:07:39

如果我错了,请纠正我,但听起来您想要的是在 X 行之后获取下一个 ,其中 X 是给定 的行跨度> - 1. 换句话说,您希望 不会扩展到下一行。

如果是这种情况,这应该可以解决问题:

var eq = $("#fromTd").attr("rowspan") - 1;
var row = $("#fromTd").parent("tr").nextAll(':eq(' + eq + ')');

这是一个现场演示: http://jsfiddle.net/wLPA9/< /a>

Correct me if I am wrong but it sounds like what you want is to get the next <tr> after X rows where X is the rowspan of a given <td> - 1. In other words, you want the next row into which that <td> will NOT extend.

If that is the case, this should do the trick:

var eq = $("#fromTd").attr("rowspan") - 1;
var row = $("#fromTd").parent("tr").nextAll(':eq(' + eq + ')');

Here's a live demo: http://jsfiddle.net/wLPA9/

我不吻晚风 2024-10-04 01:07:39

如果您尝试执行该行的操作(选择当前单元格 rowspan 末尾之后的行),您只需要 nextAll() 而不是 next(),它只返回紧邻的下一个同级元素。

var td= $('#fromTd');
var nextr= td.parent().nextAll().eq(td.attr('rowspan')-1);

或者,如果您有很多后续行,并且不想选择所有行来选择单个行,则可以使用标准 DOM rows 和 <代码>rowIndex属性:

var nextr= td.closest('table')[0].rows[td[0].parentNode.rowIndex+td[0].rowSpan];

If you're trying to do what that line looks like it's trying to do—selecting the row after the end of the current cell's rowspan—you would just need nextAll() instead of next(), which only ever returns the immediate next element sibling.

var td= $('#fromTd');
var nextr= td.parent().nextAll().eq(td.attr('rowspan')-1);

Alternatively if you've got lots of following rows and you don't want to have to select them all to pick a single one out, you could do it slightly more efficiently with the standard DOM rows and rowIndex properties:

var nextr= td.closest('table')[0].rows[td[0].parentNode.rowIndex+td[0].rowSpan];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文