我在谷歌表中使用HtmlService。
code.gs:
function openDialog() {
var html = HtmlService.createTemplateFromFile('Index')
.evaluate()
.setHeight(300);
SpreadsheetApp.getUi().showModalDialog(html, 'Dialog title');
}
的index.html:
<form>
<input type="text" name="userid" value="<? getProp(userKey,true) ?>"/>
<input type="button" value="Submit" onClick="google.script.run.withSuccessHandler().processForm(this.form)"/>
</form>
我可以以某种方式检查用户是否关闭窗口而不点击我的提交按钮? 我想强迫用户提供数据。