如何通过点击表头删除表格中的相应列?
点击表头删除对应列
这个问题的难点在于如何根据表头来删除表格中的相应列。一位大神给出了思路:
- 在每个表头上添加一个 onclick 事件侦听器。
- 在事件处理函数中获取当前表头的列数。
- 使用 javascript 删除表格中对应列。
下面是一个示例代码:
<table> <thead> <tr> <th onclick="deleteColumn(this)">表头1</th> <th onclick="deleteColumn(this)">表头2</th> <th onclick="deleteColumn(this)">表头3</th> </tr> </thead> <tbody> <tr> <td>数据11</td> <td>数据12</td> <td>数据13</td> </tr> <tr> <td>数据21</td> <td>数据22</td> <td>数据23</td> </tr> </tbody> </table> <script> function deleteColumn(th) { // 获取当前表头的列数 var colIndex = th.cellIndex; // 获取表格 var table = th.parentNode.parentNode; // 删除对应列 for (var i = 0; i < table.rows.length; i++) { table.rows[i].deleteCell(colIndex); } } </script>
这个代码实现的功能是:当点击表头时,会触发事件处理函数 deletecolumn()。该函数会获取当前表头的列数,并使用它来删除表格中对应列。
以上就是如何通过点击表头删除表格中的相应列?的详细内容,更多请关注www.sxiaw.com其它相关文章!