HTML表格包含复选框,需要将HTML表格导出到Excel文件中仅用于选中的行吗?

时间:2018-05-17 13:28:40

标签: javascript jquery html export-to-excel

我有一个HTML表,其中一列是复选框。我们可以选择该特定表中的任何行。现在我只需要将从HTML表中检查的行导出到excel文件。我该怎么办?

在下面的图像中,我想只导出被检查为excel文件的1,2和5行。

image

1 个答案:

答案 0 :(得分:0)

此部分允许您获取已选择数据的行的数据

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
</head>
<body>
  <div id="here"></div>
  <table style="width:100%" id="table">
  <tr>
    <td><input class="checkMe" type="checkbox" />    &nbsp;   </td>
    <td>Jill</td>
    <td>Smith</td> 
    <td>4350</td>
  </tr>
  <tr>
    <td><input class="checkMe" type="checkbox" />    &nbsp;   </td>
    <td>Mark</td>
    <td>Kllis</td> 
    <td>5110</td>
  </tr>
  <tr>
    <td><input class="checkMe" type="checkbox" />    &nbsp;   </td>
    <td>Keath</td>
    <td>Marks</td> 
    <td>53210</td>
  </tr>
    </table>
  <button onclick="myFunction()">Click me</button>

  <script>
    function myFunction(){
      var checks = document.getElementsByClassName('checkMe');
      var table = document.getElementById('table')

      var element = document.getElementById("here");
      while (element.firstChild) {
        element.removeChild(element.firstChild);
      }
      for (var i = 0; i < table.rows.length; i++) {
        if(checks.item(i).checked == true){
          var fName = table.rows[i].cells[1].innerHTML; //first column  
          var lName = table.rows[i].cells[2].innerHTML; //first column  
          var num = table.rows[i].cells[3].innerHTML; //first column  
          var para = document.createElement("p");
          var node = document.createTextNode(fName + " " + lName + " "  + num);
          para.appendChild(node);

          element.appendChild(para); 
        }
      }
    }
  </script>

</body>
</html>

要写入CSV,已经有了很好的答案HERE,他在小提琴上制作了一个很酷的代码,您可以查看HERE