找到下面的表格行以突出显示它
我得到了复选框:
<input class="_checkbox" type="checkbox"/>
并且,当我单击它时:
$(function() {
$('._checkbox').click(function() {
[..]
});
});
我需要突出显示复选框下方的表格行。 我尝试过:
$(function() {
$('._checkbox').click(function() {
$(this).siblings("#table_row").css("background-color", "blue");
});
});
但不起作用。
我想我必须添加一些唯一的 ID,但不知道应该如何读取它们,等等。
I got checkbox:
<input class="_checkbox" type="checkbox"/>
And , when I click it:
$(function() {
$('._checkbox').click(function() {
[..]
});
});
I need to highlight a table row that is below the checkbox.
I've tried with :
$(function() {
$('._checkbox').click(function() {
$(this).siblings("#table_row").css("background-color", "blue");
});
});
But doesn't work.
I guess I'll have to add some unique IDs, but have no idea how should I read them , etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的意思是带有复选框的当前行之后的下一行,则定义当前行并获取下一行:
如果您需要突出显示当前行:
If you mean that you next row after the current one with checkbox then define current row and get next:
If you need to hightlight current one: