如何在 Google 小工具中打开新窗口?
它既不打开选项卡,也不打开窗口:Google 小工具的代码 此处. 如果您知道 HTML 中的 'target="_blank"',我正在为 Google Gadgets 寻找类似的工具。 更准确地说,我不明白为什么 JavaScript 部分不起作用:
window.open("http://www.google.com/");
It opens neither a tab nor a window: the code for a Google Gadget here. If you know 'target="_blank"' from HTML, I am looking for a similar tool for Google Gadgets. More precisely, I cannot understand why the JavaScript piece does not work:
window.open("http://www.google.com/");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
好吧,如果您想打开新窗口,请明确执行。
target 属性用于 link 元素 (),它指示浏览器在用户单击该 URL 时在新窗口中打开该 URL。
Well, if you want to open the new window, do it explicitly.
The target attribute is for link element () which instructs browser to open the URL in new window if user clicks on it.
使用该目标打开一个新窗口,而不是替换当前窗口的 URL:
Open a new window with that target instead of replacing the current’s window URL:
像这样?
Like this?