gpt4 book ai didi

jquery - 如何修复这个 jQuery 附加选择器?

转载 作者:行者123 更新时间:2023-12-01 07:36:15 24 4
gpt4 key购买 nike

给定一个表格行,我想从连续最后一个 td 中的 span 元素中获取 HTML。

我最终得到:

$row.children("td:last").children("span:first").html();

我尝试过:

$row.children("td:last > span").html();

$row.children("td:last span").html();

但两者都不起作用。有没有办法将其压缩为单个选择器语句?

最佳答案

试试这个:

$row.find(" > td:last > span:first").html()

find() 中的第一个箭头意味着它只会查看 $row 的直接子级找到最后一个<td> 。它相当于:$row.children("td:last")但使用 find()为您提供额外的灵 active 来继续进行更深入的搜索。

关于jquery - 如何修复这个 jQuery 附加选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1359416/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com