如何通过Google表格脚本在浏览器标签中打开网站?

时间:2019-04-05 06:01:06

标签: javascript google-apps-script google-sheets google-sheets-query

我已经有了在电子表格中创建用户界面的代码,用户可以单击以下链接:

function testNew(){
  showAnchor('Google','http://www.gogole.com/');
}

function showAnchor(name,url) {
  var html = '<html><body><a href="'+url+'" target="blank" onclick="google.script.host.close()">'+name+'</a></body></html>';
  var ui = HtmlService.createHtmlOutput(html)
  SpreadsheetApp.getUi().showModelessDialog(ui,"demo");
}

但是,我不想在Google工作表中创建用户界面。

我正在寻找一种简单的方法来简单地从Google工作表脚本的浏览器标记中打开URL。我该怎么办?

已经尝试过了,但这在Google工作表脚本中不起作用

window.open("https://www.google.com");

有没有办法在浏览器中简单地打开URL?

0 个答案:

没有答案