Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个 JS 代码:
var trs = $("#internalActivities > tbody > tr");
我希望能够使用该变量trs来查找表中可见行的数量。
trs
这是我希望转换为使用变量的代码
$("#internalActivities > tbody > tr:visible").length
我正在寻找这样的代码:trs:visible.length. 当然,这段代码不起作用,但我想要有效的语法。
trs:visible.length
谢谢
这行不通吗?
trs.filter(":visible").length
从文档:
将匹配元素集减少为匹配选择器或通过函数测试的元素。
更多信息请参见filter 文档。
filter