在https://developers.google.com/apps-script/guides/html/communication中,该示例表明您应该在按钮 onclick 中通过“this.parent”引用表单。如果按钮不直接位于表单下方(可能有几个 div 深?this.parentNode.parentNode 等有效,但更明确的引用更适合我,那么应该如何最好地引用表单。
<form id="myForm">
<input name="myFile" type="file" />
<input type="button" value="Submit"
onclick="google.script.run
.withSuccessHandler(updateUrl)
.processForm(this.parentNode)" />
</form>
<div id="output"></div>