<HTML> <HEAD> <title>WEB页面导出为EXCEL文档的方法 </title> </HEAD><body><BR><table id = "PrintA" width="100%" border="1" cellspacing="0" cellpadding="0" bgcolor = "#61FF13"><TR style="text-align : center;"> <TD>单元格A</TD> <TD>单元格A</TD> <TD>单元格A</TD> <TD>单元格A</TD></TR><TR> <TD colSpan=4 style="text-align : center;"><font color="BLUE">单元格合并行</FONT><font color="BLUE" face="Verdana">A</FONT></TD></TR></TABLE><BR><table id = "PrintB" width="100%" border="1" cellspacing="0" cellpadding="0"><TR style="text-align : center;"> <TD>单元格B</TD> <TD>单元格B</TD> <TD>单元格B</TD> <TD>单元格B</TD></TR><TR> <TD colSpan=4 style="text-align : center;">单元格合并行B</TD></TR></TABLE><br><br><br><input type="button" οnclick="javascript:AllAreaWord();" value="导出页面指定区域内容到Word"><input type="button" οnclick="javascript:AllAreaExcel();" value="导出页面指定区域内容到Excel"> <input type="button" οnclick="javascript:CellAreaExcel();" value="导出表单单元格内容到Excel"> <SCRIPT LANGUAGE="javascript"> //指定页面区域内容导入Excel function AllAreaExcel() { var oXL = new ActiveXObject("Excel.Application"); var oWB = oXL.Workbooks.Add(); var oSheet = oWB.ActiveSheet; var sel=document.body.createTextRange(); sel.moveToElementText(PrintA); sel.select(); sel.execCommand("Copy"); oSheet.Paste(); oXL.Visible = true; } //指定页面区域“单元格”内容导入Excel function CellAreaExcel() { var oXL = new ActiveXObject("Excel.Application"); var oWB = oXL.Workbooks.Add(); var oSheet = oWB.ActiveSheet; var Lenr = PrintA.rows.length; for (i=0;i<Lenr;i++) { var Lenc = PrintA.rows(i).cells.length; for (j=0;j<Lenc;j++) { oSheet.Cells(i+1,j+1).value = PrintA.rows(i).cells(j).innerText; } } oXL.Visible = true; }
//指定页面区域内容导入Word function AllAreaWord() { var oWD = new ActiveXObject("Word.Application"); var oDC = oWD.Documents.Add("",0,1); var oRange =oDC.Range(0,1); var sel = document.body.createTextRange(); sel.moveToElementText(PrintA); sel.select(); sel.execCommand("Copy"); oRange.Paste(); oWD.Application.Visible = true; //window.close(); }</SCRIPT></body></html>
本文来自博客,转载请标明出处:http://blog.csdn.net/mark_gis/archive/2007/06/09/1645414.aspx
转载于:https://www.cnblogs.com/wuhenke/archive/2010/03/19/1689842.html
相关资源:利用js导出Web页面内容到Word、Excel