Jquery Tr 选择对象长度错误 - Safari

发布于 2024-12-04 20:37:00 字数 509 浏览 0 评论 0原文

好的,所以我使用以下 jquery 选择器 + length 属性来获取表中当前可见行数:

$('#orderable tbody tr:visible').length

这在 Chrome 中工作得非常好(v. 13.0.782.220 m),但在 Safari 中是错误的(v. 5.0.5)(两者都是 webkit...我发现这令人困惑。)

我抓住了选择器对象并将其记录在控制台中以查看它得到了什么,并且在 Safari 中,表的最后 4 行出现在选择器对象中两次,我不知道为什么。表格本身不会显示这些额外的 4 行,当我在控制台中查看 HTML 时,它们也不会隐藏在页面上任何奇怪的地方。

以前有人见过这样的事情吗?我不确定我之前是否见过 Safari 和 Chrome 的行为有所不同...FWIW,长度属性在 Firefox 和 IE 中是正确的

哦,这一切都在 Windows 7 上进行了测试,但是我的老板告诉我这个错误Mac 上的 Safari 也是如此。

Ok so I use the following jquery selector + length attribute to get the current number of visible rows in a table:

$('#orderable tbody tr:visible').length

This works magnificently in Chrome (v. 13.0.782.220 m), but is wrong in Safari (v. 5.0.5) (both webkit... I find this baffling.)

I grabbed the selector object and logged it in the console to see what it was getting, and in Safari, the last 4 rows of my table are present in the selector object twice, and I have no idea why. The table itself does not show these extra 4 rows, nor are they hidden anywhere weird on the page when I view the HTML in the console.

Has anyone ever seen anything like this before? I'm not sure I've ever seen Safari and Chrome behave differently before... FWIW, the length property is correct in Firefox and IE

Oh and this is all being tested on Windows 7, however my boss informed me of this bug on Safari on Mac as well.

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

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

发布评论

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

评论(1

清泪尽 2024-12-11 20:37:00

如果使用直接后代选择器样式有什么区别吗?

$('#orderable > tbody > tr:visible').length

Any difference if you use the direct descendant selector style?

$('#orderable > tbody > tr:visible').length
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文