gpt4 book ai didi

jquery 根据列值高亮行

转载 作者:太空宇宙 更新时间:2023-11-04 15:22:07 24 4
gpt4 key购买 nike

您好,我希望有人可以帮助我调整此 JQuery 代码,以便它突出显示整个数据行,而不仅仅是包含值“N”的单元格。我试图将代码应用于表格行,但它仍然只突出显示包含“N”值的单元格的背景颜色,因为我需要突出显示整个表格行。有人有什么建议吗?

    <html>
<head>
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.js"></script>
<script type="text/javascript">

$(document).ready(function(){
$('#table_id tr.y_n td').each(function(){
if ($(this).text() == 'N') {
$(this).css('background-color','#f00');
}
});
});

</script>

</head>
<body>
<table id="table_id">
<tr><th>Question</th><th>Y/N?</th></tr>
<tr><td>I am me.</td><td>Y</td></tr>
<tr class="y_n"><td>N</td><td>Y</td></tr>
<tr><td>I am not sure.</td><td class="y_n">Y</td></tr>
<tr><td>This is a table.</td><td class="y_n">Y</td></tr>
</table>

</body>
</html>

最佳答案

你只需要添加一个closest在你的css之前打电话调用:

if ($(this).text() == 'N') {
$(this).closest('tr').css('background-color','#f00');
}

演示:http://jsfiddle.net/ambiguous/KSCyC/

closest 函数遍历 DOM 以找到与选择器匹配的最近祖先。

你也可以使用 parent :

if ($(this).text() == 'N') {
$(this).parent().css('background-color','#f00');
}

演示:http://jsfiddle.net/ambiguous/RdGEy/

关于jquery 根据列值高亮行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7656860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com