(table, colIndex)
| 333 | } |
| 334 | |
| 335 | function deleteColumn(table, colIndex) { |
| 336 | Array.from(table.rows).forEach(row => { |
| 337 | if (row.children[colIndex]) { |
| 338 | row.deleteCell(colIndex); |
| 339 | } |
| 340 | }); |
| 341 | } |
| 342 | |
| 343 | // 全局更新保存状态函数 |
| 344 | function updateSaveState() { |
no outgoing calls
no test coverage detected