我想在电子表格的顶部显示HTML,方法是创建一个html元素并将其放在电子表格的顶部。
例如,如果我通过合并A1:G5在我的工作表顶部创建了一个大单元格,是否可以在其中嵌入html:
<div>
<h1>"Hello World"?</h1>
</div>
我注意到在脚本编辑器中你可以去文件> new> html文件。
但我真的没有达到它的目的。
我刚试过这个:从脚本编辑器新脚本:
function addSomeHTML() {
var html = HtmlService.createHtmlOutputFromFile('cabbages')
.setSandboxMode(HtmlService.SandboxMode.IFRAME);
}
Cabbages是一个html文件:
<div>
<h1>Hello, world!</h1>
</div>
然后我保存并导航到我的工作表。我选择了一个单元格并输入了=addSomeHTML()
出现“加载”消息,然后显示空单元格。我希望看到“Hello World!”在细胞内。
我查看了以下文档:
https://developers.google.com/apps-script/guides/html/templates#printing_scriptlets
您可以使用“模态”或“无模式”对话框。
“模态”对话框使用Ui类的showModalDialog()
方法。
Google Documentation - Modal Dialog
// This will run when the spreadsheet is opened or the browser page is refreshed
function onOpen() {
SpreadsheetApp.getUi()
.createMenu('Custom Menu')
.addItem('Open Dialog Box', 'openDialog')
.addToUi();
}
function openDialog() {
var html = HtmlService.createHtmlOutputFromFile('index');
SpreadsheetApp.getUi()
.showModalDialog(html, 'Correct Postcode Errors');
}
<div>
<h1>"Hello World"?</h1>
</div>