JS将表单导出成EXCEL的实例代码

时间:2021-05-26

复制代码 代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title> new document </title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<SCRIPT LANGUAGE="javascript">
  <!--
  function AutomateExcel()
  {
  // Start Excel and get Application object.
  var oXL = new ActiveXObject("Excel.Application");
  // Get a new workbook.
  var oWB = oXL.Workbooks.Add();
  var oSheet = oWB.ActiveSheet;
  var table = document.all.data;
  var hang = table.rows.length;
  var lie = table.rows(0).cells.length;
  // Add table headers going cell by cell.
  for (i=0;i<hang;i++)
  {
  for (j=0;j<lie;j++)
  {
  //oSheet.Cells(i+1,j+1).Font.Bold = True
  //oSheet.Cells(i+1,j+1).Font.Size = 50
  //oSheet.Cells(i+1,j+1).Alignment = 2
  oSheet.Cells(i+1,j+1).value = table.rows(i).cells(j).innerText;
  }
  }
  oXL.Visible = true;
  oXL.UserControl = true;
  }
  //-->
  </SCRIPT>
</head>


<body>
 <table border="1" width="100%" id="data">
  <tr>
   <td>&nbsp;姓名</td>
   <td colspan="2">年龄</td>
   <td>出生日期</td>
  </tr>
  <tr>
   <td>6</td>
   <td>25</td>
   <td colspan="2">8</td>
  </tr>
  <tr>
   <td height="22">1</td>
   <td height="22">2</td>
   <td colspan="2" height="22">4</td>
  </tr>
  </table>
<input type="button" name="out_excel" onclick="AutomateExcel();" value="导出到excel" class="notPrint">
</body>
</html>

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章