欢迎来到代码驿站!

JavaScript代码

当前位置:首页 > 网页前端 > JavaScript代码

javascript中直接引用Microsoft的COM生成Word

时间:2020-11-13 08:35:03|栏目:JavaScript代码|点击:
复制代码 代码如下:

<html>
<head>
<meta http-equiv=Content-Type content="text/html;charset=utf-8">
<title>Build Document by Script</TITLE>
<SCRIPT LANGUAGE="text/javascript">
function word_onclick()
{
var myDocApp=null;
myDocApp =new ActiveXObject("word.Application");
myDocApp.Application.Visible = true;
var myDoc = myDocApp.Documents.Add();

myDocApp.Selection.ParagraphFormat.Alignment=1
myDocApp.Selection.Range.Bold=true;
myDocApp.Selection.Font.Size=22;
myDocApp.Selection.Text="请假申请单"
myDocApp.Selection.insertAfter("\n");
myDocApp.Selection.MoveRight(2,10);    
myDocApp.Selection.TypeParagraph();
myDocApp.Selection.Font.Bold=false;
myDocApp.Selection.Font.Size=12;

var myTable0=myDoc.Tables.Add(myDocApp.Selection.Range,3,4);
myTable0.cell(1,1).Range.Text="请假人";
myTable0.cell(1,2).Range.Text="张三";
myTable0.cell(1,3).Range.Text="请假时间";
myTable0.cell(1,4).Range.Text="2006-2-10";

myTable0.cell(2,1).Range.Text="工号";
myTable0.cell(2,2).Range.Text="32412";
myTable0.cell(2,3).Range.Text="填表时间";
myTable0.cell(2,4).Range.Text="2006-2-9";

myTable0.cell(3,1).Range.Text="请假原因";
myTable0.cell(3,2).Range.Text="感冒";
myTable0.cell(3,3).Range.Text="处理方式";
myTable0.cell(3,4).Range.Text="病假";

var range=myDocApp.ActiveDocument.Content;
range.Collapse(0);
range.insertAfter("\n");
range=myDocApp.ActiveDocument.Content;
range.Collapse(0);

var myTable2=myDoc.Tables.Add(range,1,2);
myTable2.Columns(1).SetWidth(320,2);
myTable2.cell(1,1).Range.Text="申请人签名" //空格勿删
myTable2.cell(1,2).Range.Text="申请人的签名";

try{
myDocApp.ActiveDocument.SaveAs("e:\\JaveToWord.doc");
}catch(exception){
alert("浏览器安全设置过高,保存文件到本地失败");
myDocApp.Documents.close();
myDocApp.Application.quit();
myDocApp=null;
window.close();
}
}
</SCRIPT>
</HEAD>
<BODY>
<p><a href="javascript:word_onclick()">生成WORD</a></p>
</BODY>
</HTML>

上一篇:js图片模糊切换显示特效的方法

栏    目:JavaScript代码

下一篇:解决js中window.open弹出的是上次的缓存页面问题

本文标题:javascript中直接引用Microsoft的COM生成Word

本文地址:http://www.codeinn.net/misctech/22005.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有