3

有没有办法使用 Google 站点在同一窗口中打开 html 链接?

我想避免使用 Buttons Widget,因为它们的自定义非常有限。

已经尝试过了,但没有用

<a href="https://www.google.com" target="_PARENT">Google.com</a>

<a href="" onclick="Window.open('https://www.google.com','_parent')" >Google.com</a>

顺便说一句,在 Google 协作平台上,当您插入 HTML 小部件时,它会创建一个 IFRAME。我希望能够从此 iframe 在同一窗口上打开一个链接。

4

2 回答 2

1

_self如果要在同一选项卡中打开链接,请将目标值设置为,将其设置_blank为在新选项卡或窗口中打开。希望这个对你有帮助

于 2020-04-16T04:19:09.477 回答
-1

您可以通过单击按钮或菜单选项在浏览器的另一个选项卡中打开 URL。

我给出了下面的代码,用于菜单选项“帮助”,它在同一浏览器窗口的另一个选项卡中打开一个谷歌文档。它适用于任何浏览器。

//
//
function openUrl( url ){
  var html = HtmlService.createHtmlOutput('<html><script>'
  +'window.close = function(){window.setTimeout(function(){google.script.host.close()},9)};'
  +'var a = document.createElement("a"); a.href="'+url+'"; a.target="_blank";'
  +'if(document.createEvent){'
  +'  var event=document.createEvent("MouseEvents");'
  +'  if(navigator.userAgent.toLowerCase().indexOf("firefox")>-1){window.document.body.append(a)}'                          
  +'  event.initEvent("click",true,true); a.dispatchEvent(event);'
  +'}else{ a.click() }'
  +'close();'
  +'</script>'
  // Offer URL as clickable link in case above code fails.
  +'<body style="word-break:break-word;font-family:sans-serif;">Failed to open automatically. <a href="'+url+'" target="_blank" onclick="window.close()">Click here to proceed</a>.</body>'
  +'<script>google.script.host.setHeight(40);google.script.host.setWidth(410)</script>'
  +'</html>')
  .setWidth( 90 ).setHeight( 1 );
  SpreadsheetApp.getUi().showModalDialog( html, "Opening ..." );
}
//
//
function open_help(){
 openUrl("https://docs.google.com/document/d/..../edit");//this is the help file Google Doc
}
//
//



于 2020-04-16T04:14:30.947 回答