0

是否可以使用Google Apps脚本在Google网站中插入/显示Google表单?使用javascript插入/显示Google表单

我的代码如下所示:

var encontrado=0; 
    for (var i=1; i < array_filas ; i++){ 
    if (valor == datos[i][0]){ 
     encontrado=1; 
     App.getElementById('form').setVisible(true); 
    } 
    } 

    if(encontrado==0){ 
    App.getElementById('error').setVisible(true); 
    } 

我问用户的数字,如果数字是正确的,那么我想在谷歌网站显示谷歌的形式。或者至少将他重定向到Google表单网址。

回答