如果要在发布到Web的Google表格上运行Apps Script,则需要将代码嵌入到网页上,并使用HTML Service来创建用户界面。以下是一个简单的示例代码,它将在发布到Web的Google表格中显示“Hello World”的弹出窗口。
function doGet() {
var html = HtmlService.createHtmlOutput('Hello, world!');
SpreadsheetApp.getUi().showModalDialog(html, 'My add-on');
}
要将上述代码添加到发布到Web的Google表格中,请按照以下步骤操作:
此时,您应该能够在发布到Web的Google表格中看到弹出窗口,其中包含“Hello World”的字样。
上一篇:Appsscriptwritescriptforconnecthtmlpagewithspreadsheet”的中文描述:
如何使用AppsScript编写脚本将HTML页面与电子表格连接起来?