我正在尝试使用 Apps Script 方法在 Google Apps ScriptsetContent()
中添加一个简单index.html
文件的链接。
var newDocLink = "https://docs.google.com/document/d/1loBt7T7-4qd0ORBXiTFeDQxuG...";
// newDocLink variable have some Google Docs URL as value
var output = HtmlService.createHtmlOutput('Click <a href= " ' + newDocLink + ' ">here to open the link in a new tab</a> a minuta')
SpreadsheetApp.getUi().showModalDialog(output, 'My page title');
我得到了链接,但是当我单击它时,它不起作用,以我的语言显示此消息“与 accounts.google.com 的连接已被撤回”。
我知道这很简单,但我对 HTML 知之甚少,在寻找类似问题后,没有找到解决方案或类似用途的代码。任何帮助将不胜感激!