用ActiveX来javascript操作word的几个j参考代码

分类:Javascript| 发布:佚名| 查看: | 发表时间:2014/1/7
需要初始化Word控件,ActiveXObject("Word.Application") ,请参考下边:
代码如下:

/*
给几个js写word的参考:
this.Word.Selection.Font.Size = 16; //字体大小
this.Word.Selection.Font.Bold = true; //是否加粗
this.Word.Selection.ParagraphFormat.Alignment = 2; //0左对齐,1居中,2右对齐,数字只能0-9,慢慢试吧
this.Word.Selection.InsertRowsBelow(1); //下面加入一行
this.Word.Selection.MoveRight(1); //光标右移
this.Word.Selection.TypeText(string); //只能写string
this.Word.Selection.MoveDown(); //光标下移
this.Word.Selection.EndKey(); //光标移动到末尾
this.Word.ActiveDocument.Sections(1).Headers(1).Range.InsertAfter(string); //写页眉,结尾处写
this._LoadData = function () {
//替换函数,用于替换$strFld$类型的文本
function replace( Range, strFld ) {
//[FindText], [MatchCase], [MatchWholeWord], [MatchWildcards], [MatchSoundsLike], [MatchAllWordForms], [Forward], [Wrap], [Format], [ReplaceWith], [Replace], [MatchKashida], [MatchDiacritics], [MatchAlefHamza], [MatchControl]
Range.Find.Execute( "$"+strFld+"$", true, false, false, false, false, true, wdFindContinue, false, getElValue("l"+strFld) )
}
//初始化Word控件
this._InitWord = function ()
{
try{
this.Word = new ActiveXObject("Word.Application");
this.Word.visible = true;
this.Doc = this.Word.Documents.Open( this.TemplatePath );
this.Doc.Activate();
this.Range = this.Doc.Range();
return true
} catch(e) {
//TODO: 如果用户手动取消ActiveX的运行,则会留一WINWORD.EXE的进程。
//除非"设为可信站点,并在自定义级别里将第二项启用",则不会出现启用ActiveX的对话框。
try {
if ( this.Doc ) { this.Doc.Close(0) };
if ( this.Word ) { this.Word.Quit() }
}
catch (e){}
return false
}
}
*/
365据说看到好文章不转的人,服务器容易宕机
原创文章如转载,请注明:转载自郑州网建-前端开发 http://camnpr.com/
本文链接:http://camnpr.com/archives/836.html

相关文章