我有一个 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>
你能帮我解决这个问题吗?谢谢!