我已经有了在电子表格中创建用户界面的代码,用户可以单击以下链接:
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?