Google Apps スクリプト プロジェクト内の html ファイルにフォームがあり、送信ボタンがクリックされたときに別の html ファイルにリダイレクトする必要があります。
HTML コード:
<html>
<script>
function doSomething(){
alert('this one works too!');
//here Change of page
}
</script>
<body>
<h1 style="text-align:center;font-family:Tahoma;">HORAS LABORADAS<br/>
<form style="margin-left:90px;font-family:Trebuchet MS;">
<b>Nombre</b><br/>
<input type="button" onclick="doSomething()">
</form>
</body>
</html>
私はこれを
function doGet() {
return HtmlService.createTemplateFromFile('prueba').evaluate();
}