如何在文件上传的提交按钮中引用表单

时间:2013-10-11 09:12:18

标签: google-apps-script

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>

1 个答案:

答案 0 :(得分:1)

我猜你的情况可能正在使用:

onclick="google.script.run
      .withSuccessHandler(updateUrl)
      .processForm(document.getElementById('formId')"