我的 google 应用程序脚本项目中的 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();
}