当在<th>
中单击复选框时,希望获得与该值匹配的所有<td>
并将其打印出来,可以通过以下步骤实现:
<th>
中的复选框添加一个事件监听器,以便在单击时触发相应的函数。<td>
元素,检查它们的值是否与复选框的值匹配。<td>
元素的内容打印出来。以下是一个示例的代码实现:
<!DOCTYPE html>
<html>
<head>
<title>Checkbox Table</title>
<script>
function printMatchingCells(checkbox) {
var value = checkbox.value;
var cells = document.getElementsByTagName("td");
for (var i = 0; i < cells.length; i++) {
if (cells[i].innerHTML === value) {
console.log(cells[i].innerHTML);
}
}
}
</script>
</head>
<body>
<table>
<tr>
<th><input type="checkbox" value="Value 1" onclick="printMatchingCells(this)"></th>
<th><input type="checkbox" value="Value 2" onclick="printMatchingCells(this)"></th>
<th><input type="checkbox" value="Value 3" onclick="printMatchingCells(this)"></th>
</tr>
<tr>
<td>Value 1</td>
<td>Value 2</td>
<td>Value 3</td>
</tr>
<tr>
<td>Value 2</td>
<td>Value 1</td>
<td>Value 3</td>
</tr>
<tr>
<td>Value 3</td>
<td>Value 2</td>
<td>Value 1</td>
</tr>
</table>
</body>
</html>
在上述示例中,当复选框被单击时,会调用printMatchingCells
函数,并将复选框的值作为参数传递给该函数。函数会遍历所有的<td>
元素,如果某个<td>
元素的内容与复选框的值匹配,则将其内容打印到控制台中。
请注意,上述示例仅为演示目的,实际应用中可能需要根据具体需求进行适当的修改和扩展。
没有搜到相关的沙龙
领取专属 10元无门槛券
手把手带您无忧上云