表格行的背景颜色属性(jQuery)

发布于 2025-01-04 04:52:52 字数 221 浏览 0 评论 0原文

我有一个 html 表格,并在表格单元格中按一个键。现在我想检查下表中的任何行是否具有背景颜色#FFFFCC。我用 jQuery 代码尝试过

var t = $(this).closest('tr').nextAll('[background="#FFFFCC"]').eq(0);
   if (t.length > 0)
   //

,但它不起作用。

I have a html table and press a key in a table cell. Now I want to check if any of the following table rows has the background color #FFFFCC. I tried this with the jQuery-code

var t = $(this).closest('tr').nextAll('[background="#FFFFCC"]').eq(0);
   if (t.length > 0)
   //

but it does not work.

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

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

发布评论

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

评论(1

柒七 2025-01-11 04:52:52

您尝试使用属性等于选择器,但该选择器不起作用,因为 background 不是属性。我认为你需要做的是:

var t = $(this).closest('tr').nextAll().filter(function(){
            if ($(this).css('background-color') == '#ffffcc'){
                return true;
            }
        });

You're trying to use an attribute-equals selector, which won't work since background isn't an attribute. What you need to do, I think, is:

var t = $(this).closest('tr').nextAll().filter(function(){
            if ($(this).css('background-color') == '#ffffcc'){
                return true;
            }
        });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文