最近做一个项目,用到了javascript操纵excel以生成报表,下面是标有详细注解的实例 复制代码 代码如下: <br><br> <BR>function MakeExcel(){ <BR>var i,j; <BR>try { <BR>var xls = new ActiveXObject ( "Excel.Application" ); <BR>} <BR>catch(e) { <BR>alert( "要打印该表,您必须安装Excel电子表格软件,同时浏览器须使用“ActiveX 控件”,您的浏览器须允许执行控件。 请点击【帮助】了解浏览器设置方法!"); <BR>return ""; <BR>} <BR>xls.visible =true; //设置excel为可见 <BR>var xlBook = xls.Workbooks.Add; <BR>var xlsheet = xlBook.Worksheets(1); <BR><!--合并--> <BR>xlsheet.Range(xlsheet.Cells(1,1),xlsheet.Cells(1,7)).mergecells=true; <BR>xlsheet.Range(xlsheet.Cells(1,1),xlsheet.Cells(1,7)).value="发卡记录"; <BR>// xlsheet.Range(xlsheet.Cells(1,1),xlsheet.Cells(1,6)).Interior.ColorIndex=5;//设置底色为蓝色 <BR>// xlsheet.Range(xlsheet.Cells(1,1),xlsheet.Cells(1,6)).Font.ColorIndex=4;//设置字体色 <BR>// xlsheet.Rows(1). Interior .ColorIndex = 5 ;//设置底色为蓝色 设置背景色 Rows(1).Font.ColorIndex=4 <BR><!--设置行高--> <BR>xlsheet.Rows(1).RowHeight = 25; <BR><!--设置字体 ws.Range(ws.Cells(i0+1,j0), ws.Cells(i0+1,j1)).Font.Size = 13 --> <BR>xlsheet.Rows(1).Font.Size=14; <BR><!--设置字体 设置选定区的字体 xlsheet.Range(xlsheet.Cells(i0,j0), ws.Cells(i0,j0)).Font.Name = "黑体" --> <BR>xlsheet.Rows(1).Font.Name="黑体"; <BR><!--设置列宽 xlsheet.Columns(2)=14;--> <BR>xlsheet.Columns("A:D").ColumnWidth =18; <BR><!--设置显示字符而不是数字--> <BR>xlsheet.Columns(2).NumberFormatLocal="@"; <BR>xlsheet.Columns(7).NumberFormatLocal="@"; <br><br>//设置单元格内容自动换行 range.WrapText = true ; <BR>//设置单元格内容水平对齐方式 range.HorizontalAlignment = Excel.XlHAlign.xlHAlignCenter;//设置单元格内容竖直堆砌方式 <BR>//range.VerticalAlignment=Excel.XlVAlign.xlVAlignCenter <BR>//range.WrapText = true; xlsheet.Rows(3).WrapText=true 自动换行 <BR>//设置标题栏 <BR>xlsheet.Cells(2,1).Value="卡号"; <BR>xlsheet.Cells(2,2).Value="密码"; <BR>xlsheet.Cells(2,3).Value="计费方式"; <BR>xlsheet.Cells(2,4).Value="有效天数"; <BR>xlsheet.Cells(2,5).Value="金额"; <BR>xlsheet.Cells(2,6).Value="所属服务项目"; <BR>xlsheet.Cells(2,7).Value="发卡时间"; <BR>var oTable=document.all['fors:data']; <BR>var rowNum=oTable.rows.length; <BR>for(i=2;i<=rowNum;i++){ <BR>for (j=1;j<=7;j++){ <BR>//html table类容写到excel <BR>xlsheet.Cells(i+1,j).Value=oTable.rows(i-1).cells(j-1).innerHTML; <BR>} <br><br>} <BR><!-- xlsheet.Range(xls.Cells(i+4,2),xls.Cells(rowNum,4)).Merge; --> <BR>// xlsheet.Range(xlsheet.Cells(i, 4), xlsheet.Cells(i-1, 6)).BorderAround , 4 <BR>// for(mn=1,mn<=6;mn++) . xlsheet.Range(xlsheet.Cells(1, mn), xlsheet.Cells(i1, j)).Columns.AutoFit; <BR>xlsheet.Columns.AutoFit; <BR>xlsheet.Range( xlsheet.Cells(1,1),xlsheet.Cells(rowNum+1,7)).HorizontalAlignment =-4108;//居中 <BR>xlsheet.Range( xlsheet.Cells(1,1),xlsheet.Cells(1,7)).VerticalAlignment =-4108; <BR>xlsheet.Range( xlsheet.Cells(2,1),xlsheet.Cells(rowNum+1,7)).Font.Size=10; <BR>xlsheet.Range( xlsheet.Cells(2,1),xlsheet.Cells(rowNum+1,7)).Borders(3).Weight = 2; //设置左边距 <BR>xlsheet.Range( xlsheet.Cells(2,1),xlsheet.Cells(rowNum+1,7)).Borders(4).Weight = 2;//设置右边距 <BR>xlsheet.Range( xlsheet.Cells(2,1),xlsheet.Cells(rowNum+1,7)).Borders(1).Weight = 2;//设置顶边距 <BR>xlsheet.Range( xlsheet.Cells(2,1),xlsheet.Cells(rowNum+1,7)).Borders(2).Weight = 2;//设置底边距 <br><br><BR>xls.UserControl = true; //很重要,不能省略,不然会出问题 意思是excel交由用户控制 <BR>xls=null; <BR>xlBook=null; <BR>xlsheet=null; <BR>} <br><br><BR> ziyuanweihu 卡号 密码 计费方式 有效天数 金额 所属服务项目 发卡时间 h000010010 543860 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010011 683352 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010012 433215 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010013 393899 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010014 031736 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010015 188600 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010016 363407 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010017 175315 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010018 354437 计点 2.0 测试项目 2006-06-23 10:14:40.843 h000010019 234750 计点 2.0 测试项目 2006-06-23 10:14:40.843