몇 개의 javascript 작업 워드 의 참고 코드
/*
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
}
}
*/
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Thymeleaf 의 일반 양식 제출 과 AJAX 제출텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.