<tr> <td contenteditable="true">工艺膜层</td> <td contenteditable="true">AOI Step</td> <td contenteditable="true">不良类型</td> <td contenteditable="true">Layer(Code)</td> <td contenteditable="true">Type</td> <td contenteditable="true">Dept</td> <td contenteditable="true">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>
时间: 2023-08-14 13:44:03 浏览: 110
vue2 如何实现div contenteditable=“true”(类似于v-model)的效果
5星 · 资源好评率100%
这段代码是一个HTML表格中的一行数据(<tr>表示table row,即表格中的一行)。其中每个单元格(<td>)都设置了contenteditable属性为true,表示该单元格内容可编辑。这个表格可能用于记录某个工艺过程中的不良情况,每个单元格表示不同的信息,例如:
- 工艺膜层
- AOI Step
- 不良类型
- Layer(Code)
- Type
- Dept
- Subcode
- Code描述
- Image1
- Image2
- Image3
- Image4
- Image5
- Image6
- 判定细则
这些信息可能是用于记录某个工艺过程中的不良情况,每个单元格表示不同的信息。其中,Image1到Image6可能是用于记录不良情况的照片或者截图,而判定细则可能是用于记录不良情况的判定标准。
阅读全文