0

Google Apps Script를 사용하여 Google 사이트에 Google 양식을 삽입/표시 할 수 있습니까?자바 스크립트를 사용하여 Google 양식 삽입/표시

내 코드는 다음과 같습니다 수가 그때는 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 양식 URL로 리디렉션하십시오.

답변

0

그것은 Google 사이트에 구글 양식을 삽입 할 수있다 :

Documentation - Google

Google 애플리케이션 서비스에 사이트 서비스가있다 : 당신이 할 수처럼

Documentation - Google

보이는 Google 사이트에 동적으로 페이지를 추가하십시오.

Documentation - Get Page by URL

:이 페이지를 열 일하는 것이 궁금

https://sites.google.com/site/yourSiteName/thePageName

:Documentation - Sites Page

구글 사이트에서

새로운 페이지는 다른 각 페이지의 URL이

관련 문제