根据你的代码,前7列能够修改,第8列无法修改,第8列没使用<input>元素
时间: 2024-04-21 13:23:09 浏览: 58
jQuery获取table下某一行某一列的值实现代码
非常抱歉,我之前的回答中犯了一个错误。如果第8列没有使用`<input>`元素,则无法通过CSS直接设置其宽度。`width`属性对于非表单元素(如普通文本)不起作用。
要修改第8列的宽度,您可以使用其他方法,例如JavaScript。以下是一个示例,展示如何使用JavaScript动态设置第8列的宽度:
```html
<!DOCTYPE html>
<html>
<head>
<style>
table {
border-collapse: separate;
width: 100%;
}
td, th {
border: 1.5px solid black;
padding: 5px;
}
td:nth-child(1) input,
td:nth-child(2) input,
td:nth-child(3) input,
td:nth-child(4) input,
td:nth-child(5) input,
td:nth-child(6) input,
td:nth-child(7) input {
width: 10%;
}
</style>
<script>
window.addEventListener('DOMContentLoaded', (event) => {
const td8 = document.querySelector('td:nth-child(8)');
td8.style.width = '300px';
});
</script>
</head>
<body>
<table>
<tr>
<td><input type="text" oninput="filterTable(0)" placeholder="工艺膜层"></td>
<td><input type="text" oninput="filterTable(1)" placeholder="AOI Step"></td>
<td><input type="text" oninput="filterTable(2)" placeholder="不良类型"></td>
<td><input type="text" oninput="filterTable(3)" placeholder="Layer(Code)"></td>
<td><input type="text" oninput="filterTable(4)" placeholder="Type"></td>
<td><input type="text" oninput="filterTable(5)" placeholder="Dpet"></td>
<td><input type="text" oninput="filterTable(6)" placeholder="Subcode"></td>
<td contenteditable="true">Code描述</td>
<td contenteditable="true">Image1</td>
<td contenteditable="true">Image2</td>
<td contenteditable="true">Image3</td>
<td contenteditable="true">Image4</td>
<td contenteditable="true">Image5</td>
<td contenteditable="true">Image6</td>
<td contenteditable="true">判定细则</td>
</tr>
</table>
</body>
</html>
```
在上述代码中,我添加了一个`DOMContentLoaded`事件监听器,当页面加载完成后,会获取第8列的`<td>`元素,并使用JavaScript将其宽度设置为300px。
请尝试使用修改后的代码,并检查第8列的宽度是否成功设置为300px。如果还有其他问题,请随时提供更多详细信息。非常抱歉给您带来的困扰。
阅读全文