How to redirect to another webpage from Google Apps Script Gadget?

后端 未结 1 593
你的背包
你的背包 2021-01-25 17:13

I\'m building a web application in Google Sites. Currently, I have two forms, the first one loads a Spreadsheet and displays it as a table, then when you select a row from the t

相关标签:
1条回答
  • 2021-01-25 17:17

    I solved it adding:

    <base target="_top">
    

    to the html code and changing the javascript redirect:

    window.top.location.href = url; 
    
    0 讨论(0)
提交回复
热议问题