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表單網址。

回答