gpt4 book ai didi

javascript - HTML 按钮单击更改行的背景颜色

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

我有一个 HTML 表格,每一行都有一个按钮。这里的目标是当一个按钮被点击时,整行的背景颜色都会改变。代码是:

<table>
<tr>
<td>Value1</td>
<td>Value2</td>
<td>
<input type="button" value="press" onclick="myFunction(this)" />
</td>
</tr>
<tr>
<td>Value3</td>
<td>Value4</td>
<td>
<input type="button" value="press" onclick="myFunction(this)" />
</td>
</tr>
</table>

<script type="text/javascript">
function myFunction(e) {
//change the background color of the row
}
</script>

你能帮我解决这个问题吗?谢谢!

最佳答案

您应该改用 class 并且为了更好的练习,请删除 html 中的内联函数调用。

使用这个:

HTML

<table>
<tr>
<td>Value1</td>
<td>Value2</td>
<td>
<input type="button" value="press" />
</td>
</tr>
<tr>
<td>Value3</td>
<td>Value4</td>
<td>
<input type="button" value="press" />
</td>
</tr>
</table>

jQuery

var all_tr = $('tr');
$('td input[type="button"]').on('click', function () {
all_tr.removeClass('selected');
$(this).closest('tr').addClass('selected');
});

演示 here

(更新)

关于javascript - HTML 按钮单击更改行的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18518812/

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