我想使用Google Apps脚本插入现有文档中的链接,该链接会在同一个域中打开不同的文档。 我尝试使用HtmlService创建一个Web应用程序,里面有一个超链接,但是,清理过程会清除链接。任何提示?
答案 0 :(得分:0)
您将链接作为带有链接属性的段落插入到文档中。例如
function myFunction() {
var doc = DocumentApp.getActiveDocument();
var para = doc.getBody().appendParagraph("this is a link").setLinkUrl("http://www.google.com")
}