如何将目标网页中的 table 导出成 excel?

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>table2excel</title>
</head>
<body>

<input type="button" id="btn" value="导出"/>

<table id="example">
  省略内容
</table>

<script src="jquery.min.js"></script>
<script src="jquery.table2excel.min.js"></script>
<script>
  $(function() {
    $('#btn').click(function() {
      $('#example').table2excel({
        // 不被导出的表格行的CSS class类
        exclude: '.excludeThisClass',
        // 导出的Excel文档的名称,(没看到作用)
        name: 'Worksheet Name',
        // Excel文件的名称
        filename: 'SomeFile.xls'
      })
    })
  })
</script>
</body>
</html>

案例地址: https://github.com/hsowan/table2excel