var table = document.body.querySelector('.mui-table-view');
                while(table.hasChildNodes()) //当table下还存在子节点时 循环继续
                {
                    table.removeChild(table.firstChild);
                }

相关文章: