表格行的背景颜色属性(jQuery)
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试使用属性等于选择器,但该选择器不起作用,因为
background
不是属性。我认为你需要做的是: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: