我正在尝试学习如何在谷歌中编写脚本。我在 Google Drive 中编写了以下脚本:
function doGet() {
return HtmlService.createHtmlOutput(
"<form action='http://www.google.com' method='get' id='foo'></form>" +
"<script>document.getElementById('foo').submit();</script>");
}
当我运行它时,什么都没有出现!有谁能够帮我?