我正在尝试学习如何在谷歌中编写脚本。我在Google云端硬盘中编写了以下脚本:
function doGet() {
return HtmlService.createHtmlOutput(
"<form action='http://www.google.com' method='get' id='foo'></form>" +
"<script>document.getElementById('foo').submit();</script>");
}
当我跑步时,什么也没出现! 有人能帮助我吗?