在JavaScript中更改表格行的背景色可以通过多种方式实现。以下是一个基本的示例,展示了如何通过点击按钮来更改特定行的背景色:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Change Row Background Color</title>
<style>
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<table id="myTable">
<tr>
<td>Row 1</td>
<td><button onclick="changeColor(this)">Change Color</button></td>
</tr>
<tr>
<td>Row 2</td>
<td><button onclick="changeColor(this)">Change Color</button></td>
</tr>
<!-- Add more rows as needed -->
</table>
<script src="script.js"></script>
</body>
</html>
function changeColor(button) {
// 获取按钮所在的行
var row = button.parentNode.parentNode;
// 更改行的背景色
row.style.backgroundColor = 'yellow';
}
changeColor
函数。changeColor
函数通过按钮元素找到其所在的行,并更改该行的背景色。这种技术可以用于用户交互,例如标记重要数据、高亮显示用户选择的行等。
通过这种方式,你可以轻松地在JavaScript中更改表格行的背景色,并根据需要进行扩展和调整。
领取专属 10元无门槛券
手把手带您无忧上云