Heim  >  Artikel  >  Web-Frontend  >  用jscript实现新建word文档_javascript技巧

用jscript实现新建word文档_javascript技巧

WBOY
WBOYOriginal
2016-05-16 19:12:311426Durchsuche

Demonstration script that creates and displays a new Microsoft Word document.

复制代码 代码如下:

Set objWord = CreateObject("Word.Application")
objWord.Visible = True
Set objDoc = objWord.Documents.Add()

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn