在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>
答案 0 :(得分:1)
我猜你的情况可能正在使用:
onclick="google.script.run
.withSuccessHandler(updateUrl)
.processForm(document.getElementById('formId')"