如何在表中的td中找到空单元格或单元格,并使用js和jquery使其可编辑

时间:2017-05-17 10:55:17

标签: javascript jquery html-table

我正在使用巨大的表,就像我有5000个tds一样,我希望使用js和jQuery来制作所有空单元格或单元格,并且只能使用js和jQuery进行编辑。

1 个答案:

答案 0 :(得分:1)

请尝试这样做。Activity会忽略trim()

 
$('td').each(function() {
  if (!$(this).text().trim()) {
    $(this).attr('contenteditable', true)
  }
})
table,
tr,
td {
  border: 1px solid #333;
}