Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法为表格单元格分配隐藏值?我想将某个值、整数或字符串分配给表格单元格,因此我可以使用 id 在 javascript 中附加和编辑该值。
您可以将一个名为“data-”的属性附加到任何 DOM 节点。使用标准属性访问和更改函数来读取和写入当然是字符串的值。
试试 HTML5 的数据 API。您可以在单元格上设置属性:
<td id="cell1" data-value="1">One</td><td id="cell2" data-value="2">Two</td>
然后你可以使用:
document.getElementById('cell1').dataset.value;