读书人

javascript - 几个javascript操作word

发布时间: 2013-07-01 12:33:04 作者: rapoo

javascript - 几个javascript操作word的参考代码

/* 几个js写word的参考: his.Word.Selection.Font.Size = 16; //字体大小 his.Word.Selection.Font.Bold = true; //是否加粗 his.Word.Selection.ParagraphFormat.Alignment = 2; //0左对齐,1居中,2右对齐,数字只能0-9,慢慢试吧 his.Word.Selection.InsertRowsBelow(1); //下面加入一行 his.Word.Selection.MoveRight(1); //光标右移 his.Word.Selection.TypeText(string); //只能写string his.Word.Selection.MoveDown(); //光标下移 his.Word.Selection.EndKey(); //光标移动到末尾 his.Word.ActiveDocument.Sections(1).Headers(1).Range.InsertAfter(string); //写页眉,结尾处写 his._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  }  } */

?

读书人网 >JavaScript

热点推荐