例子,js脚本操作excel文件。
复制代码 代码示例:
function HandleExcel(){
try {
var xls = new ActiveXObject ( "Excel.Application" );
}
catch(e) {
alert( "您必须安装Excel电子表格软件,");
return "";
}
xls.visible =true;
//设置excel为可见
var xlBook = xls.Workbooks.Add;
var xlsheet = xlBook.Worksheets(1);
xlsheet.Range(xlsheet.Cells(1,1),xlsheet.Cells(1,7)).mergecells=true;
<!--设置行高-->
xlsheet.Rows(1).RowHeight = 25;
<!--设置字体 -->
xlsheet.Rows(1).Font.Size=14;
<!--设置字体 设置选定区的字体-->
xlsheet.Rows(1).Font.Name="黑体";
<!--设置列宽 -->
xlsheet.Columns("A:D").ColumnWidth =18;
<!--设置显示字符而不是数字-->
xlsheet.Columns(2).NumberFormatLocal="@";
xlsheet.Cells(2,1).Value="********";
//很重要,不能省略,不然会出问题 意思是excel交由用户控制
xls.UserControl = true;
xls=null;
xlBook=null;
xlsheet=null;
}